Ticket #50973: patch-CLI_Compile.sh.diff
File patch-CLI_Compile.sh.diff, 1.2 KB (added by raimue (Rainer Müller), 9 years ago) |
---|
-
CLI_Compile.sh
old new 54 54 test -e Makefile && rm Makefile 55 55 chmod +x configure 56 56 if [ "$OS" = "mac" ]; then 57 ./configure $MacOptions $ZenLib_Options $*57 ./configure $MacOptions $ZenLib_Options "$@" 58 58 else 59 ./configure $ZenLib_Options $*59 ./configure $ZenLib_Options "$@" 60 60 fi 61 61 if test -e Makefile; then 62 62 make clean … … 85 85 test -e Makefile && rm Makefile 86 86 chmod +x configure 87 87 if [ "$OS" = "mac" ]; then 88 ./configure $MacOptions $*88 ./configure $MacOptions --with-libcurl "$@" 89 89 else 90 ./configure $*90 ./configure "$@" 91 91 fi 92 92 if test -e Makefile; then 93 93 make clean … … 116 116 cd MediaInfo/Project/GNU/CLI/ 117 117 test -e Makefile && rm Makefile 118 118 chmod +x configure 119 ./configure --enable-staticlibs $*120 121 119 if [ "$OS" = "mac" ]; then 122 ./configure $MacOptions --enable-staticlibs $*120 ./configure $MacOptions --enable-staticlibs "$@" 123 121 else 124 ./configure --enable-staticlibs $*122 ./configure --enable-staticlibs "$@" 125 123 fi 126 124 127 125 if test -e Makefile; then