Browse Source

* Use $(PATHSEP) in fpmake-clean executable

git-svn-id: trunk@17720 -
joost 14 years ago
parent
commit
7c7811558a
2 changed files with 2 additions and 2 deletions
  1. 1 1
      packages/fcl-web/Makefile
  2. 1 1
      packages/fcl-web/Makefile.fpc

+ 1 - 1
packages/fcl-web/Makefile

@@ -289,7 +289,7 @@ endif
 endif
 override PACKAGE_NAME=fcl-web
 override PACKAGE_VERSION=2.5.1
-FPMAKE_BIN_CLEAN=$(wildcard ./fpmake$(SRCEXEEXT))
+FPMAKE_BIN_CLEAN=$(wildcard .$(PATHSEP)fpmake$(SRCEXEEXT))
 ifeq ($(FPMAKE_BIN_CLEAN),)
 FPMAKE_BIN_CLEAN=$(ECHO)
 endif

+ 1 - 1
packages/fcl-web/Makefile.fpc

@@ -19,7 +19,7 @@ fpcdir=../..
 # If no fpmake exists and clean is called, do not try to build fpmake, it will
 # most often fail because the dependencies are cleared. So simply skip the
 # clean by replacing the command with 'echo'
-FPMAKE_BIN_CLEAN=$(wildcard ./fpmake$(SRCEXEEXT))
+FPMAKE_BIN_CLEAN=$(wildcard .$(PATHSEP)fpmake$(SRCEXEEXT))
 ifeq ($(FPMAKE_BIN_CLEAN),)
 FPMAKE_BIN_CLEAN=$(ECHO)
 endif