From: Theodore Tso Date: Tue, 8 Nov 1994 06:45:40 +0000 (+0000) Subject: Don't use $< in a non suffix rule context X-Git-Tag: krb5-1.0-beta5~1003 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d3e56432e3265df7e841140b0e197d8e78988245;p=krb5.git Don't use $< in a non suffix rule context git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4645 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/util/ChangeLog b/src/util/ChangeLog index 98c29551e..52c6d37a4 100644 --- a/src/util/ChangeLog +++ b/src/util/ChangeLog @@ -1,3 +1,7 @@ +Tue Nov 8 01:44:26 1994 Theodore Y. Ts'o (tytso@dcl) + + * Makefile.in: Don't use $< in a non suffix rule context. + Tue Nov 1 14:49:00 1994 (tytso@rsx-11) * libupdate.sh: Use library.stamp to determine whether or not diff --git a/src/util/Makefile.in b/src/util/Makefile.in index b95fd594c..56ae9233f 100644 --- a/src/util/Makefile.in +++ b/src/util/Makefile.in @@ -7,7 +7,7 @@ all:: libupdate libupdate: $(srcdir)/libupdate.sh rm -f $@ $@.tmp - $(editsh) $< > $@.tmp && chmod +x $@.tmp && mv $@.tmp $@ + $(editsh) $(srcdir)/libupdate.sh > $@.tmp && chmod +x $@.tmp && mv $@.tmp $@ clean:: $(RM) libupdate