aclocal.m4 (SS_RULES): Add double quotes around "$}{*.ct"
authorTheodore Tso <tytso@mit.edu>
Mon, 7 Aug 1995 23:27:52 +0000 (23:27 +0000)
committerTheodore Tso <tytso@mit.edu>
Mon, 7 Aug 1995 23:27:52 +0000 (23:27 +0000)
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

src/ChangeLog
src/aclocal.m4

index 945c9f471dab73ad49c9640ef68854b598aca981..77a1ce1eaffd3ff157687e2d11ed040b8ac84110 100644 (file)
@@ -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
index f60f0a67c7771ac6d823caed1db938d35b01ccc8..5ba013ed4086d782f3a88f2a9b31e102ebd594df 100644 (file)
@@ -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
 
 }