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.
This commit is contained in:
Viktor Szakats
2009-07-17 09:34:04 +00:00
parent 3fb6323bd0
commit e6948aba1f
2 changed files with 6 additions and 2 deletions

View File

@@ -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.

View File

@@ -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); \