diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 1d7b466d76..d883c6229b 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,10 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-07-17 11:33 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * config/globsh.cf + * Using RM instead of RD in sh clean rules. + 2009-07-17 11:31 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * config/globsh.cf ! Fix to nt clean rule. diff --git a/harbour/config/globsh.cf b/harbour/config/globsh.cf index 1b2b34290b..8a9acd35b5 100644 --- a/harbour/config/globsh.cf +++ b/harbour/config/globsh.cf @@ -36,7 +36,7 @@ clean:: -@$(RDP) $(OBJ_DIR) $(LIB_FILE) $(EXE_FILE); \ if [ ! -z $(LIB_FILE) ]; \ then \ - $(RDP) $(basename $(LIB_FILE)).bak; \ + $(RM) $(basename $(LIB_FILE)).bak; \ if [ ! -f $(LIB_DIR)/* ]; \ then \ $(RDP) $(LIB_DIR); \ @@ -44,7 +44,7 @@ clean:: fi ; \ if [ ! -z $(EXE_FILE) ]; \ then \ - $(RDP) $(basename $(EXE_FILE)).tds; \ + $(RM) $(basename $(EXE_FILE)).tds; \ if [ ! -f $(EXE_DIR)/* ]; \ then \ $(RDP) $(EXE_DIR); \