1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-13 11:16:41 +00:00
termux-packages/packages/apache2/build-instdso.sh.patch
2021-06-24 12:00:29 +03:00

16 lines
424 B
Diff

--- ./build/instdso.sh 2011-03-05 00:28:38.000000000 +0530
+++ ./build/instdso.sh.mod 2021-06-22 08:37:42.026266930 +0530
@@ -59,6 +59,12 @@
esac
CMD="$SH_LIBTOOL --mode=install $INSTALL_CMD $DSOARCHIVE $TARGETDIR/"
+# Prefixing with bash below simplifies cross compiling setup where
+# $SH_LIBTOOL may have wrong shebang:
+case "$SH_LIBTOOL" in
+ bash*) ;;
+ *) CMD="bash $CMD" ;;
+esac
echo $CMD
$CMD || exit $?