diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-27 20:05:30 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-04-27 20:05:30 (GMT) |
commit | 7c15c639fae91f4fbd6c7dab9a6f74d5dbc90312 (patch) | |
tree | 196de6aebff25cb5d6bbb8228c0285c9dd3bb4da /c++/config | |
parent | 6b23bf89240eeb24f24411f2af96d8c9e19e1e1c (diff) | |
download | hdf5-7c15c639fae91f4fbd6c7dab9a6f74d5dbc90312.zip hdf5-7c15c639fae91f4fbd6c7dab9a6f74d5dbc90312.tar.gz hdf5-7c15c639fae91f4fbd6c7dab9a6f74d5dbc90312.tar.bz2 |
[svn-r3865] Purpose:
Bug Fix
Description:
The "-$(RM)" was failing for make distclean.
Solution:
Removed the "-".
Platforms tested:
Linux
Diffstat (limited to 'c++/config')
-rw-r--r-- | c++/config/conclude.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/c++/config/conclude.in b/c++/config/conclude.in index c024c32..ba55c21 100644 --- a/c++/config/conclude.in +++ b/c++/config/conclude.in @@ -139,13 +139,13 @@ uninstall-doc: ## mostlyclean: @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)" -o -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 @@ -154,7 +154,7 @@ mostlyclean: ## clean: mostlyclean @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 |