From 3b33df911c5c9e7d035df6212487c7fa9b70fd66 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C3=ABl=20Carr=C3=A9?= Date: Mon, 14 Apr 2014 10:32:05 +0200 Subject: [PATCH] win32 packaging: do not fail if shared libraries do not exist --- extras/package/win32/package.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/package/win32/package.mak b/extras/package/win32/package.mak index 4a705847d0..74d06d700c 100644 --- a/extras/package/win32/package.mak +++ b/extras/package/win32/package.mak @@ -62,7 +62,7 @@ endif # Compiler shared DLLs, when using compilers built with --enable-shared # The shared DLLs may not necessarily be in the first LIBRARY_PATH, we # should check them all. - library_path_list=`$(CXX) -v /dev/null 2>&1 | grep ^LIBRARY_PATH|cut -d= -f2` ;\ + -library_path_list=`$(CXX) -v /dev/null 2>&1 | grep ^LIBRARY_PATH|cut -d= -f2` ;\ IFS=':' ;\ for x in $$library_path_list ;\ do \ -- 2.11.4.GIT