From d523cb92c7c5847e0278f7063c462adcaa8c2e29 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 28 May 2001 21:22:15 +0000 Subject: [PATCH] clean up --with-plugin-path a little and make it depend on libdir instead of exec_prefix (removes the hard-coding of lib) --- configure.in | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/configure.in b/configure.in index 48c0ce5cd..bef143eff 100644 --- a/configure.in +++ b/configure.in @@ -1138,13 +1138,10 @@ AC_ARG_WITH(plugin-path, \${libdir}/quakeforge], pluginpath=$withval, pluginpath="auto") -eval foo="$libdir" -default_pluginpath="$foo/$PACKAGE" +PLUGINDIR="$libdir/$PACKAGE" if test "x$pluginpath" = "xauto" -o "x$pluginpath" = "xyes" -o "x$pluginpath" = "x"; then - PLUGINDIR='${exec_prefix}/lib'/$PACKAGE eval pluginpath="$PLUGINDIR" elif test "x$pluginpath" = xno; then - PLUGINDIR='${exec_prefix}/lib'/$PACKAGE pluginpath="." else PLUGINDIR=$pluginpath