Ticket #42269: patch-CLI_Compile.sh.diff

File patch-CLI_Compile.sh.diff, 798 bytes (added by Pesthauch666@…, 10 years ago)
  • CLI_Compile.sh

    old new  
    3131 cd ZenLib/Project/GNU/Library/
    3232 test -e Makefile && rm Makefile
    3333 chmod u+x configure
    34  ./configure $ZenLib_Options $*
     34 ./configure $ZenLib_Options "$@"
    3535 if test -e Makefile; then
    3636  make clean
    3737  Zen_Make
     
    5757 cd MediaInfoLib/Project/GNU/Library/
    5858 test -e Makefile && rm Makefile
    5959 chmod u+x configure
    60  ./configure $*
     60 ./configure --with-libcurl "$@"
    6161 if test -e Makefile; then
    6262  make clean
    6363  Zen_Make
     
    8383 cd MediaInfo/Project/GNU/CLI/
    8484 test -e Makefile && rm Makefile
    8585 chmod u+x configure
    86  ./configure --enable-staticlibs $*
     86 ./configure --enable-staticlibs "$@"
    8787 if test -e Makefile; then
    8888  make clean
    8989  Zen_Make