diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 1bab3a35b3..8cc392daf0 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,14 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-07-11 17:59 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * config/dos/dir.cf + * config/dos/install.cf + * config/win/dir.cf + * config/os2/install.cf + * config/wce/dir.cf + * More sync. + 2009-07-11 17:47 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * config/rules.cf * config/dos/dir.cf diff --git a/harbour/config/dos/dir.cf b/harbour/config/dos/dir.cf index 5e88e491fc..273b387b2c 100644 --- a/harbour/config/dos/dir.cf +++ b/harbour/config/dos/dir.cf @@ -27,7 +27,7 @@ DIR_RULE = $(foreach file, $(DIR_LIST), $(dir_mk)) else # bash DIR_LIST = $(subst \,/,$(DIRS)) DIR_RULE =\ - for d in $(DIR_LIST); do \ + @for d in $(DIR_LIST); do \ if [ -d $$d ]; then \ $(MAKE) -C $$d $@; \ fi \ diff --git a/harbour/config/dos/install.cf b/harbour/config/dos/install.cf index 5b453c104d..0f265ee3a5 100644 --- a/harbour/config/dos/install.cf +++ b/harbour/config/dos/install.cf @@ -36,6 +36,7 @@ INSTALL_RULE =\ then \ echo "! Installing $$i on $(INSTALL_DIRSH)"; \ $(CP) $$i $(INSTALL_DIRSH); \ + true; \ else \ echo "! Cannot install $$i, not found" 1>&2; \ fi \ @@ -44,4 +45,4 @@ INSTALL_RULE =\ endif -endif +endif # Empty install list diff --git a/harbour/config/os2/install.cf b/harbour/config/os2/install.cf index 3a78d60b13..0137b30ee1 100644 --- a/harbour/config/os2/install.cf +++ b/harbour/config/os2/install.cf @@ -34,6 +34,7 @@ INSTALL_RULE =\ then \ echo "! Installing $$i on $(INSTALL_DIR)"; \ $(CP) $$i $(INSTALL_DIR); \ + true; \ else \ echo "! Can't install $$i, not found" 1>&2; \ fi \ @@ -42,4 +43,4 @@ INSTALL_RULE =\ endif -endif +endif # Empty install list diff --git a/harbour/config/wce/dir.cf b/harbour/config/wce/dir.cf index e56a598784..0d2f62f9c7 100644 --- a/harbour/config/wce/dir.cf +++ b/harbour/config/wce/dir.cf @@ -7,14 +7,12 @@ ifeq ($(PM),) # Only traverse directories if not compiling a specific module ifeq ($(SHLVL),) # non-bash ifeq ($(DIRS),) # Empty directory list -DIR_RULE =\ - @echo Done +DIR_RULE = @echo Done else DIR_LIST = $(subst /,\,$(DIRS)) DIR_MAKE = $(subst /,\,$(MK)) -DIR_RULE =\ - $(COMSPEC) /c for %d in ($(DIR_LIST)) do $(DIR_MAKE) -C %d $@ -endif +DIR_RULE = $(COMSPEC) /c for %d in ($(DIR_LIST)) do $(DIR_MAKE) -C %d $@ +endif # ! Empty directory list else # bash diff --git a/harbour/config/win/dir.cf b/harbour/config/win/dir.cf index e56a598784..0d2f62f9c7 100644 --- a/harbour/config/win/dir.cf +++ b/harbour/config/win/dir.cf @@ -7,14 +7,12 @@ ifeq ($(PM),) # Only traverse directories if not compiling a specific module ifeq ($(SHLVL),) # non-bash ifeq ($(DIRS),) # Empty directory list -DIR_RULE =\ - @echo Done +DIR_RULE = @echo Done else DIR_LIST = $(subst /,\,$(DIRS)) DIR_MAKE = $(subst /,\,$(MK)) -DIR_RULE =\ - $(COMSPEC) /c for %d in ($(DIR_LIST)) do $(DIR_MAKE) -C %d $@ -endif +DIR_RULE = $(COMSPEC) /c for %d in ($(DIR_LIST)) do $(DIR_MAKE) -C %d $@ +endif # ! Empty directory list else # bash