diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-04-01 16:52:37 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-04-01 16:52:37 +0000 |
commit | 06766472b545e330ac686f64b5dfdbcbb8897510 (patch) | |
tree | 6aaa3e9bb8500d2e81b9135cc976a474fb2007fd | |
parent | cea80e18362cbfe5106a2d6a0c0d9d5194c0567b (diff) | |
download | xine-lib-06766472b545e330ac686f64b5dfdbcbb8897510.tar.gz xine-lib-06766472b545e330ac686f64b5dfdbcbb8897510.tar.bz2 |
fix arts prefix (and remove unsupported exec_prefix
CVS patchset: 4529
CVS date: 2003/04/01 16:52:37
-rw-r--r-- | m4/arts.m4 | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/m4/arts.m4 b/m4/arts.m4 index 8cf4688b9..35f0370f9 100644 --- a/m4/arts.m4 +++ b/m4/arts.m4 @@ -11,19 +11,11 @@ dnl Get the cflags and libraries from the artsc-config script dnl AC_ARG_WITH(arts-prefix,[ --with-arts-prefix=PFX Prefix where ARTS is installed (optional)], arts_prefix="$withval", arts_prefix="") -AC_ARG_WITH(arts-exec-prefix,[ --with-arts-exec-prefix=PFX Exec prefix where ARTS is installed (optional)], - arts_exec_prefix="$withval", arts_exec_prefix="") AC_ARG_ENABLE(artstest, [ --disable-artstest Do not try to compile and run a test ARTS program], , enable_artstest=yes) - if test x$arts_exec_prefix != x ; then - arts_args="$arts_args --exec-prefix=$arts_exec_prefix" - if test x${ARTS_CONFIG+set} != xset ; then - ARTS_CONFIG=$arts_exec_prefix/bin/artsc-config - fi - fi if test x$arts_prefix != x ; then - arts_args="$arts_args --prefix=$arts_prefix" + arts_args="$arts_args --arts-prefix=$arts_prefix" if test x${ARTS_CONFIG+set} != xset ; then ARTS_CONFIG=$arts_prefix/bin/artsc-config fi |