From: Theodore Tso Date: Mon, 7 Aug 1995 23:27:52 +0000 (+0000) Subject: aclocal.m4 (SS_RULES): Add double quotes around "$}{*.ct" X-Git-Tag: krb5-1.0-beta6~1375 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=da5f14c7671e00d36ee418fd959ed3f98992e879;p=krb5.git aclocal.m4 (SS_RULES): Add double quotes around "$}{*.ct" aclocal.m4 (CONFIG_RULES): Add $(SHELL) to invocation of autoconf, so that things work even if the execute bit isn't set on the shell script. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6449 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/ChangeLog b/src/ChangeLog index 945c9f471..77a1ce1ea 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,11 @@ +Mon Aug 7 19:26:06 1995 Theodore Y. Ts'o + + * aclocal.m4 (SS_RULES): Add double quotes around "$}{*.ct" + + * aclocal.m4 (CONFIG_RULES): Add $(SHELL) to invocation of + autoconf, so that things work even if the execute bit + isn't set on the shell script. + Tue Jul 18 19:20:49 1995 Ezra Peisach * aclocal.m4 (KRB5_SOCKADDR_SA_LEN): Add space before = to keep diff --git a/src/aclocal.m4 b/src/aclocal.m4 index f60f0a67c..5ba013ed4 100644 --- a/src/aclocal.m4 +++ b/src/aclocal.m4 @@ -158,7 +158,7 @@ Makefile: $(srcdir)/Makefile.in config.status $(SRCTOP)/config/pre.in $(SRCTOP)/ config.status: $(srcdir)/configure $(SHELL) config.status --recheck $(srcdir)/configure: $(srcdir)/configure.in $(SRCTOP)/aclocal.m4 - cd $(srcdir); $(SRCTOP)/util/autoconf/autoconf --localdir=$(BUILDTOP) --macrodir=$(BUILDTOP)/util/autoconf + cd $(srcdir); $(SHELL) $(SRCTOP)/util/autoconf/autoconf --localdir=$(BUILDTOP) --macrodir=$(BUILDTOP)/util/autoconf ] AC_POP_MAKEFILE()dnl ])dnl @@ -230,10 +230,10 @@ MAKE_COMMANDS= $(BUILDTOP)/util/ss/mk_cmds .SUFFIXES: .h .c .et .ct .ct.c: - @if [ $< != $}{*.ct ]; then \ - (set -x; cp $< $}{*.ct && $(MAKE_COMMANDS) $}{*.ct && $(RM) $}{*.ct) || exit 1; \ + @if [ $< != "$}{*.ct" ]; then \ + (set -x; cp $< "$}{*.ct" && $(MAKE_COMMANDS) "$}{*.ct" && $(RM) "$}{*.ct") || exit 1; \ else \ - (set -x; $(MAKE_COMMANDS) $}{*.ct) || exit 1; \ + (set -x; $(MAKE_COMMANDS) "$}{*.ct") || exit 1; \ fi }