svn rev #21968: trunk/src/
epeisach@MIT.EDU
epeisach at MIT.EDU
Wed Feb 11 08:01:14 EST 2009
http://src.mit.edu/fisheye/changelog/krb5/?cs=21968
Commit By: epeisach
Log Message:
ticket: 6390
subject: --disable-rpath is not working
tags: pullup
target_version: 1.7
AC_ARG_ENABLE returns its value in enableval not withval. --disable-rpath
was not working - or dependent on some previous setting...
Changed Files:
U trunk/src/aclocal.m4
Modified: trunk/src/aclocal.m4
===================================================================
--- trunk/src/aclocal.m4 2009-02-11 12:47:51 UTC (rev 21967)
+++ trunk/src/aclocal.m4 2009-02-11 13:01:11 UTC (rev 21968)
@@ -1215,7 +1215,7 @@
fi])
AC_ARG_ENABLE([rpath],
AC_HELP_STRING([--disable-rpath],[suppress run path flags in link lines]),
-[enable_rpath=$withval],
+[enable_rpath=$enableval],
[enable_rpath=yes])
if test "x$enable_rpath" != xyes ; then
More information about the cvs-krb5
mailing list