Mercurial > mplayer.hg
changeset 11351:dce7219bed77
define install itself instead of a path to install, needed for ginstall
original patch by Thomas Glanzmann <sithglan@stud.uni-erlangen.de>
author | attila |
---|---|
date | Sat, 01 Nov 2003 14:57:40 +0000 |
parents | 007ec48cf146 |
children | d8b1f7509df2 |
files | configure |
diffstat | 1 files changed, 10 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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 ;;