Ticket #50973: patch-CLI_Compile.sh.diff

File patch-CLI_Compile.sh.diff, 1.2 KB (added by raimue (Rainer Müller), 8 years ago)
  • CLI_Compile.sh

    old new  
    5454    test -e Makefile && rm Makefile
    5555    chmod +x configure
    5656    if [ "$OS" = "mac" ]; then
    57         ./configure $MacOptions $ZenLib_Options $*
     57        ./configure $MacOptions $ZenLib_Options "$@"
    5858    else
    59         ./configure $ZenLib_Options $*
     59        ./configure $ZenLib_Options "$@"
    6060    fi
    6161    if test -e Makefile; then
    6262        make clean
     
    8585    test -e Makefile && rm Makefile
    8686    chmod +x configure
    8787    if [ "$OS" = "mac" ]; then
    88         ./configure $MacOptions $*
     88        ./configure $MacOptions --with-libcurl "$@"
    8989    else
    90         ./configure $*
     90        ./configure "$@"
    9191    fi
    9292    if test -e Makefile; then
    9393        make clean
     
    116116    cd MediaInfo/Project/GNU/CLI/
    117117    test -e Makefile && rm Makefile
    118118    chmod +x configure
    119     ./configure --enable-staticlibs $*
    120 
    121119    if [ "$OS" = "mac" ]; then
    122         ./configure $MacOptions --enable-staticlibs $*
     120        ./configure $MacOptions --enable-staticlibs "$@"
    123121    else
    124         ./configure --enable-staticlibs $*
     122        ./configure --enable-staticlibs "$@"
    125123    fi
    126124
    127125    if test -e Makefile; then