Browse Source

* ECHOREDIR set to echo for not Unix

peter 22 years ago
parent
commit
7d4885dc70
2 changed files with 166 additions and 160 deletions
  1. 161 159
      utils/fpcm/fpcmake.inc
  2. 5 1
      utils/fpcm/fpcmake.ini

File diff suppressed because it is too large
+ 161 - 159
utils/fpcm/fpcmake.inc


+ 5 - 1
utils/fpcm/fpcmake.ini

@@ -311,7 +311,11 @@ PACKAGESDIR:=$(wildcard $(FPCDIR) $(FPCDIR)/packages/base $(FPCDIR)/packages/ext
 
 
 # Echo that can redir (must be able run in the default OS shell)
 # Echo that can redir (must be able run in the default OS shell)
 ifndef ECHOREDIR
 ifndef ECHOREDIR
-ECHOREDIR:=$(subst /,$(PATHSEP),$(ECHO))
+ifndef inUnix
+ECHOREDIR=echo
+else
+ECHOREDIR=$(ECHO)
+endif
 endif
 endif
 
 
 # To copy pograms
 # To copy pograms

Some files were not shown because too many files changed in this diff