Fredrik Fornwall
6 years ago
3 changed files with 14 additions and 15 deletions
@ -1,14 +0,0 @@ |
|||
diff -u -r ../httpd-2.4.38/build/instdso.sh ./build/instdso.sh
|
|||
--- ../httpd-2.4.38/build/instdso.sh 2011-03-04 18:58:38.000000000 +0000
|
|||
+++ ./build/instdso.sh 2019-03-17 22:34:44.701332303 +0000
|
|||
@@ -58,7 +58,9 @@
|
|||
;; |
|||
esac |
|||
|
|||
-CMD="$SH_LIBTOOL --mode=install $INSTALL_CMD $DSOARCHIVE $TARGETDIR/"
|
|||
+# Adding sh below simplifies cross compiling setup where $SH_LIBTOOL
|
|||
+# may have wrong shebang:
|
|||
+CMD="sh $SH_LIBTOOL --mode=install $INSTALL_CMD $DSOARCHIVE $TARGETDIR/"
|
|||
echo $CMD |
|||
$CMD || exit $? |
|||
|
@ -0,0 +1,13 @@ |
|||
diff -u -r ../httpd-2.4.38/configure ./configure
|
|||
--- ../httpd-2.4.38/configure 2019-01-17 18:46:19.000000000 +0000
|
|||
+++ ./configure 2019-03-17 23:05:48.786527661 +0000
|
|||
@@ -6401,7 +6401,7 @@
|
|||
LTFLAGS='--silent' |
|||
fi |
|||
my_libtool=`$apr_config --apr-libtool` |
|||
- LIBTOOL="$my_libtool \$(LTFLAGS)"
|
|||
+ LIBTOOL="bash $my_libtool \$(LTFLAGS)"
|
|||
- libtoolversion=`$my_libtool --version`
|
|||
+ libtoolversion=`bash $my_libtool --version`
|
|||
case $libtoolversion in |
|||
*1.[45]* | *[2-9].[0-9]*) |
Loading…
Reference in new issue