svn rev #22035: branches/krb5-1-7/src/ 
    tlyu@MIT.EDU 
    tlyu at MIT.EDU
       
    Wed Feb 18 19:38:18 EST 2009
    
    
  
http://src.mit.edu/fisheye/changelog/krb5/?cs=22035
Commit By: tlyu
Log Message:
ticket: 6390
version_fixed: 1.7
status: resolved
pull up r21968 from trunk
 ------------------------------------------------------------------------
 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...
 ------------------------------------------------------------------------
Changed Files:
U   branches/krb5-1-7/src/aclocal.m4
Modified: branches/krb5-1-7/src/aclocal.m4
===================================================================
--- branches/krb5-1-7/src/aclocal.m4	2009-02-19 00:38:09 UTC (rev 22034)
+++ branches/krb5-1-7/src/aclocal.m4	2009-02-19 00:38:17 UTC (rev 22035)
@@ -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