diff options
author | Richard Basch <probe@mit.edu> | 1996-02-22 04:24:39 +0000 |
---|---|---|
committer | Richard Basch <probe@mit.edu> | 1996-02-22 04:24:39 +0000 |
commit | 2c3e419c0ef2e87a0fc1a99e09b0b8afe400160f (patch) | |
tree | 396a1d02261681967f1a83edd8e2225c9bdd8444 /src | |
parent | 8663f65dbb3fdcbc46d239a20588610ea9404df5 (diff) | |
download | krb5-2c3e419c0ef2e87a0fc1a99e09b0b8afe400160f.tar.gz krb5-2c3e419c0ef2e87a0fc1a99e09b0b8afe400160f.tar.xz krb5-2c3e419c0ef2e87a0fc1a99e09b0b8afe400160f.zip |
Do not include the build directories in the rpath (runtime lib path)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7495 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r-- | src/aclocal.m4 | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/aclocal.m4 b/src/aclocal.m4 index 5503295f1..5007f3bb0 100644 --- a/src/aclocal.m4 +++ b/src/aclocal.m4 @@ -859,9 +859,9 @@ AC_SUBST(LD_SHLIBDIR_PREFIX) SHLIB_RPATH_DIRS= if test $krb5_cv_shlibs_use_dirs = yes ; then if test $krb5_cv_shlibs_use_colon_dirs = yes ; then - SHLIB_RPATH_DIRS="${krb5_cv_shlibs_dirhead}$(KRB5_SHLIBDIR):`pwd`/\$(TOPLIBD)" + SHLIB_RPATH_DIRS="${krb5_cv_shlibs_dirhead}$(KRB5_SHLIBDIR)" else - SHLIB_RPATH_DIRS="${krb5_cv_shlibs_dirhead}\$(KRB5_SHLIBDIR) ${krb5_cv_shlibs_dirhead}`pwd`/\$(TOPLIBD)" + SHLIB_RPATH_DIRS="${krb5_cv_shlibs_dirhead}\$(KRB5_SHLIBDIR)" fi fi AC_SUBST(SHLIB_RPATH_DIRS) @@ -997,17 +997,17 @@ dnl Check for missing DBM prototypes dnl AC_DEFUN(AC_CHECK_DBM_PROTO,[ AC_MSG_CHECKING([for missing $2 prototype]) - AC_CACHE_VAL(krb_cv_missing_$2_prototype, + AC_CACHE_VAL(krb5_cv_missing_$2_prototype, AC_EGREP_HEADER([$2], [$1.h], - eval krb_cv_missing_$2_prototype=no, + eval krb5_cv_missing_$2_prototype=no, AC_TRY_LINK( [#include <$1.h> int $2();], [$2();], $4 - eval krb_cv_missing_$2_prototype=yes, + eval krb5_cv_missing_$2_prototype=yes, $3 - eval krb_cv_missing_$2_prototype=no))) - if eval "test \"`echo '$krb_cv_missing_'$1_prototype`\" = yes"; then + eval krb5_cv_missing_$2_prototype=no))) + if eval "test \"`echo '$krb5_cv_missing_'$1_prototype`\" = yes"; then AC_MSG_RESULT(yes) else AC_MSG_RESULT(no) |