diff options
author | Bill Nottingham <notting@redhat.com> | 2005-08-04 17:42:58 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2005-08-04 17:42:58 +0000 |
commit | 8cb576b129e701b4c38dbb9cc8a04343ab8cb017 (patch) | |
tree | 3691c67ade2a9db982a5a67323a4aa83ae70113f | |
parent | e031daf3091714ccea3305c3e4e55f8374cf7bc4 (diff) | |
download | anaconda-8cb576b129e701b4c38dbb9cc8a04343ab8cb017.tar.gz anaconda-8cb576b129e701b4c38dbb9cc8a04343ab8cb017.tar.xz anaconda-8cb576b129e701b4c38dbb9cc8a04343ab8cb017.zip |
fix make clean
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | ui/Makefile | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2005-08-03 Bill Nottingham <notting@redhat.com> + + * ui/Makefile: fix make clean + 2005-08-01 Jeremy Katz <katzj@redhat.com> * loader2/module-info: Add mptspi and mptfc for new driver split diff --git a/ui/Makefile b/ui/Makefile index 396319cd4..21a148327 100644 --- a/ui/Makefile +++ b/ui/Makefile @@ -10,4 +10,4 @@ install: depend: clean: - rm *~ + rm -f *~ |