diff options
| author | Ezra Peisach <epeisach@mit.edu> | 2001-06-08 15:48:01 +0000 |
|---|---|---|
| committer | Ezra Peisach <epeisach@mit.edu> | 2001-06-08 15:48:01 +0000 |
| commit | 33ae915808680b5def87de0288c4f11a5a4e8534 (patch) | |
| tree | 768dfc41aa453a43c559ec086b27ff2fbbfed950 /src | |
| parent | 05bbcaf269b2b5d602e810f1250b25bae403f278 (diff) | |
| download | krb5-33ae915808680b5def87de0288c4f11a5a4e8534.tar.gz krb5-33ae915808680b5def87de0288c4f11a5a4e8534.tar.xz krb5-33ae915808680b5def87de0288c4f11a5a4e8534.zip | |
* krb5-config.in (CC_LINK): Use ' vs " to prevent bash expansion of
variables.
(LIBS): Quote autoconf substitution in case of space being present.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13305 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/krb5-config.in | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 0d39679949..14cd7f7ebd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2001-06-08 Ezra Peisach <epeisach@mit.edu> + + * krb5-config.in (CC_LINK): Use ' vs " to prevent bash expansion of + variables. + (LIBS): Quote autoconf substitution in case of space being present. + 2001-06-06 Ken Raeburn <raeburn@mit.edu> * aclocal.m4 (CONFIG_RULES): Set and substitute AUTOHEADER and diff --git a/src/krb5-config.in b/src/krb5-config.in index e5a97012ab..3738c3ec10 100644 --- a/src/krb5-config.in +++ b/src/krb5-config.in @@ -31,12 +31,12 @@ prefix=@prefix@ exec_prefix=@exec_prefix@ includedir=@includedir@ libdir=@libdir@ -CC_LINK="@CC_LINK@" +CC_LINK='@CC_LINK@' KRB4_LIB=@KRB4_LIB@ DES425_LIB=@DES425_LIB@ -LIBS=@LIBS@ +LIBS='@LIBS@' GEN_LIB=@GEN_LIB@ # Defaults for program |
