summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1995-08-07 23:27:52 +0000
committerTheodore Tso <tytso@mit.edu>1995-08-07 23:27:52 +0000
commitda5f14c7671e00d36ee418fd959ed3f98992e879 (patch)
tree7e02892b2ebd02bb0fa5c964e634bb40ccc0510b
parentfde06220c6241f302dc167fa429d7c23af9be98c (diff)
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
-rw-r--r--src/ChangeLog8
-rw-r--r--src/aclocal.m48
2 files changed, 12 insertions, 4 deletions
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 <tytso@dcl>
+
+ * 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 <epeisach@kangaroo.mit.edu>
* 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
}