Browse Source

* fixed digest creation on Windows.

git-svn-id: trunk@6169 -
yury 18 years ago
parent
commit
c1b1be9a67
2 changed files with 2 additions and 2 deletions
  1. 1 1
      tests/Makefile
  2. 1 1
      tests/Makefile.fpc

+ 1 - 1
tests/Makefile

@@ -1528,7 +1528,7 @@ endif
 	cd $(TEST_OUTPUTDIR) && tar cfz $(DB_TARGZ) --files-from=tar.lst
 else
 $(TEST_OUTPUTDIR)/$(DB_TARGZ): $(TEST_OUTPUTDIR)/dbdigest.cfg
-	cd $(TEST_OUTPUTDIR) && ../../$(PREPUP) $(DB_TARGZ)
+	cd $(TEST_OUTPUTDIR) && $(subst /,\,../../$(PREPUP)) $(DB_TARGZ)
 endif
 uploadrun: $(TEST_OUTPUTDIR)/$(DB_TARGZ)
 ifdef inWinNT

+ 1 - 1
tests/Makefile.fpc

@@ -338,7 +338,7 @@ endif
 
 else
 $(TEST_OUTPUTDIR)/$(DB_TARGZ): $(TEST_OUTPUTDIR)/dbdigest.cfg
-        cd $(TEST_OUTPUTDIR) && ../../$(PREPUP) $(DB_TARGZ)
+        cd $(TEST_OUTPUTDIR) && $(subst /,\,../../$(PREPUP)) $(DB_TARGZ)
 endif
 
 uploadrun: $(TEST_OUTPUTDIR)/$(DB_TARGZ)