pull up r21968 from trunk
authorTom Yu <tlyu@mit.edu>
Thu, 19 Feb 2009 00:38:17 +0000 (00:38 +0000)
committerTom Yu <tlyu@mit.edu>
Thu, 19 Feb 2009 00:38:17 +0000 (00:38 +0000)
 ------------------------------------------------------------------------
 r21968 | epeisach | 2009-02-11 08:01:11 -0500 (Wed, 11 Feb 2009) | 9 lines
 Changed paths:
    M /trunk/src/aclocal.m4

 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...

 ------------------------------------------------------------------------

ticket: 6390
version_fixed: 1.7
status: resolved

git-svn-id: svn://anonsvn.mit.edu/krb5/branches/krb5-1-7@22035 dc483132-0cff-0310-8789-dd5450dbe970

src/aclocal.m4

index 4f1c9d6e2f154b3bd28d2070b836f902f8180e9f..7fc61b00944d9ecd7866d97a7c247dbcbf3e6d02 100644 (file)
@@ -1215,7 +1215,7 @@ AC_ARG_ENABLE([shared], ,
 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