summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorattila <attila@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-11-01 14:57:40 +0000
committerattila <attila@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-11-01 14:57:40 +0000
commit6ce8b10dd24d257ad609fff7e9919ff4d8e918e7 (patch)
tree336b46ae01ba94e7c6d794b3090fa7db176abfa5 /configure
parent28f5233b36ea14ce9470cdc20a3bcc5908941e4b (diff)
downloadmpv-6ce8b10dd24d257ad609fff7e9919ff4d8e918e7.tar.bz2
mpv-6ce8b10dd24d257ad609fff7e9919ff4d8e918e7.tar.xz
define install itself instead of a path to install, needed for ginstall
original patch by Thomas Glanzmann <sithglan@stud.uni-erlangen.de> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11352 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure13
1 files changed, 10 insertions, 3 deletions
diff --git a/configure b/configure
index fa1af5db3a..a16c275c64 100755
--- a/configure
+++ b/configure
@@ -264,9 +264,12 @@ Miscellaneous options:
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 @@ for ac_option do
--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 @@ for ac_option do
--enable-runtime-cpudetection) ;;
--disable-runtime-cpudetection) ;;
--install-path=*) ;;
+ --with-install=*) ;;
# Real 2nd pass
--enable-mencoder) _mencoder=yes ;;