From 33ae915808680b5def87de0288c4f11a5a4e8534 Mon Sep 17 00:00:00 2001 From: Ezra Peisach Date: Fri, 8 Jun 2001 15:48:01 +0000 Subject: [PATCH] * 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 --- src/ChangeLog | 6 ++++++ src/krb5-config.in | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 0d3967994..14cd7f7eb 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2001-06-08 Ezra Peisach + + * 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 * aclocal.m4 (CONFIG_RULES): Set and substitute AUTOHEADER and diff --git a/src/krb5-config.in b/src/krb5-config.in index e5a97012a..3738c3ec1 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 -- 2.26.2