diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-04-19 21:47:12 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-04-19 21:47:12 (GMT) |
commit | ca9bdbdcbe7fb52263e5d28f072af01bb6f56fe9 (patch) | |
tree | 121fef8c86f6e6de88b62e5441bb015610e2cd62 /config/conclude.in | |
parent | b44a58dc42b4018d96cc069529a9dcd94285e172 (diff) | |
download | hdf5-ca9bdbdcbe7fb52263e5d28f072af01bb6f56fe9.zip hdf5-ca9bdbdcbe7fb52263e5d28f072af01bb6f56fe9.tar.gz hdf5-ca9bdbdcbe7fb52263e5d28f072af01bb6f56fe9.tar.bz2 |
[svn-r3827] Purpose:
Bug fix.
Description:
'make distclean' is broken on FreeBSD 4.3, with some syntax errors. I have
a feeling that the make command is more picky in FBSD 4.3 than in 4.2 which
is what is causing these errors to crop up now.
Solution:
Add missing semicolon to line in 'clean' target and take out bogus '-'s
in front of "$(RM)" commands which are already in if's
Platforms tested:
FreeBSD 4.3 (hawkwind)
Diffstat (limited to 'config/conclude.in')
-rw-r--r-- | config/conclude.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/conclude.in b/config/conclude.in index 65bd3f1..67f50bc 100644 --- a/config/conclude.in +++ b/config/conclude.in @@ -191,13 +191,13 @@ mostlyclean: fi; \ done @if test -n "$(LIB_OBJ)"; then \ - -$(RM) $(LIB_OBJ) $(LIB_OBJ:.lo=.o); \ + $(RM) $(LIB_OBJ) $(LIB_OBJ:.lo=.o); \ fi @if test -n "$(TEST_OBJ)"; then \ - -$(RM) $(TEST_OBJ) $(TEST_OBJ:.lo=.o); \ + $(RM) $(TEST_OBJ) $(TEST_OBJ:.lo=.o); \ fi @if test -n "$(PROG_OBJ)" || test -n "$(MOSTLYCLEAN)"; then \ - -$(RM) $(PROG_OBJ) $(PROG_OBJ:.lo=.o) $(MOSTLYCLEAN); \ + $(RM) $(PROG_OBJ) $(PROG_OBJ:.lo=.o) $(MOSTLYCLEAN); \ fi ## Like `mostlyclean' except it also removes the final targets: things like @@ -211,7 +211,7 @@ clean: mostlyclean fi; \ done @if test -n "$(LIB)" -o -n "$(TEST_PROGS)" -o -n "$(PROGS)" -o -n "$(CLEAN)"; then \ - -$(RM) $(LIB) $(TEST_PROGS) $(PROGS) $(CLEAN) \ + $(RM) $(LIB) $(TEST_PROGS) $(PROGS) $(CLEAN); \ fi; -$(RM) -r .libs |