diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1998-03-12 07:00:36 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1998-03-12 07:00:36 +0000 |
commit | 9782849f071b87e896b6c70a7b134962fe858be5 (patch) | |
tree | e056a883bbd212cd5face5366d75353f868eedd7 /gnu/usr.bin/cvs/tools | |
parent | ea3c335b4bf326bd21007b71f18d06a885682de1 (diff) |
Latest version from Cyclic
Diffstat (limited to 'gnu/usr.bin/cvs/tools')
-rw-r--r-- | gnu/usr.bin/cvs/tools/ChangeLog | 4 | ||||
-rw-r--r-- | gnu/usr.bin/cvs/tools/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gnu/usr.bin/cvs/tools/ChangeLog b/gnu/usr.bin/cvs/tools/ChangeLog index 407c053d6b2..8cd177e81e0 100644 --- a/gnu/usr.bin/cvs/tools/ChangeLog +++ b/gnu/usr.bin/cvs/tools/ChangeLog @@ -1,3 +1,7 @@ +Sat Feb 21 22:02:12 1998 Ian Lance Taylor <ian@cygnus.com> + + * Makefile.in (clean): Change "/bin/rm" to "rm". + Wed Jan 8 14:50:47 1997 Jim Kingdon <kingdon@harvey.cyclic.com> * Makefile.in: Remove CVSid; we decided to get rid diff --git a/gnu/usr.bin/cvs/tools/Makefile.in b/gnu/usr.bin/cvs/tools/Makefile.in index 3a39bc310d9..578b210d053 100644 --- a/gnu/usr.bin/cvs/tools/Makefile.in +++ b/gnu/usr.bin/cvs/tools/Makefile.in @@ -50,7 +50,7 @@ ls: .PHONY: ls clean: - /bin/rm -f *.o core + rm -f *.o core .PHONY: clean distclean: clean |