From affe0abc3e0364a55777b9d29e28f065da618c57 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sat, 15 Feb 2014 05:12:32 +0100 Subject: [PATCH] pre-configure/gnu-configure-asneeded.sh: do nothing if configure_script does not exist. --- common/hooks/pre-configure/gnu-configure-asneeded.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/hooks/pre-configure/gnu-configure-asneeded.sh b/common/hooks/pre-configure/gnu-configure-asneeded.sh index 838f3855e8..16275ab6ad 100644 --- a/common/hooks/pre-configure/gnu-configure-asneeded.sh +++ b/common/hooks/pre-configure/gnu-configure-asneeded.sh @@ -3,6 +3,9 @@ hook() { : ${configure_script:=./configure} + if [ ! -f ${configure_script} ]; then + return 0 + fi # http://lists.gnu.org/archive/html/libtool-patches/2004-06/msg00002.html if [ -z "$broken_as_needed" -a "$build_style" = "gnu-configure" ]; then sed -i "s/^\([ \t]*tmp_sharedflag\)='-shared'/\1='-shared -Wl,--as-needed'/" ${configure_script}