# HG changeset patch # User attila # Date 1067698660 0 # Node ID dce7219bed77b10b022c4faea6f83f5e86f6d549 # Parent 007ec48cf14627a775fa2949cdc86158932e887c define install itself instead of a path to install, needed for ginstall original patch by Thomas Glanzmann diff -r 007ec48cf146 -r dce7219bed77 configure --- a/configure Sat Nov 01 14:43:28 2003 +0000 +++ b/configure Sat Nov 01 14:57:40 2003 +0000 @@ -264,9 +264,12 @@ honored) [en] (Available: $LANGUAGES all) --enable-shared-pp install & use shared postprocessing lib - --install-path=PATH the path to a custom install program (useful if - your OS uses a GNU-incompatible install utility by - default and you want to point to the GNU version) + --with-install=PATH use a custom install program (useful if your OS uses + a GNU-incompatible install utility by default and + you want to use GNU version) + --install-path=PATH the path to a custom install program + this option is obsolete and will be removed soon, + use --with-install instead. Advanced options: --enable-mmx build with MMX support [autodetect] @@ -372,6 +375,9 @@ --install-path=*) _install=`echo $ac_option | cut -d '=' -f 2 | sed 's/\/$//'`"/install" ;; + --with-install=*) + _install=`echo $ac_option | cut -d '=' -f 2 ` + ;; esac done @@ -1200,6 +1206,7 @@ --enable-runtime-cpudetection) ;; --disable-runtime-cpudetection) ;; --install-path=*) ;; + --with-install=*) ;; # Real 2nd pass --enable-mencoder) _mencoder=yes ;;