Browse Source

Use ./ prefix for ppas on Unix systems

git-svn-id: trunk@23959 -
pierre 12 years ago
parent
commit
ab54fee4d8
1 changed files with 5 additions and 1 deletions
  1. 5 1
      utils/fpcm/fpcmake.ini

+ 5 - 1
utils/fpcm/fpcmake.ini

@@ -9,7 +9,7 @@
 
 
 # OS categories
 # OS categories
 BSDs = freebsd netbsd openbsd darwin
 BSDs = freebsd netbsd openbsd darwin
-UNIXs = linux $(BSDs) solaris qnx haiku aix 
+UNIXs = linux $(BSDs) solaris qnx haiku aix
 LIMIT83fs = go32v2 os2 emx watcom
 LIMIT83fs = go32v2 os2 emx watcom
 OSNeedsComspecToRunBatch = go32v2 watcom
 OSNeedsComspecToRunBatch = go32v2 watcom
 
 
@@ -1166,7 +1166,11 @@ RC=$(RCPROG)
 AR=$(ARPROG)
 AR=$(ARPROG)
 
 
 # ppas.bat / ppas.sh
 # ppas.bat / ppas.sh
+ifdef inUnix
+PPAS=./ppas$(SRCBATCHEXT)
+else
 PPAS=ppas$(SRCBATCHEXT)
 PPAS=ppas$(SRCBATCHEXT)
+endif
 
 
 # ldconfig to rebuild .so cache
 # ldconfig to rebuild .so cache
 ifdef inUnix
 ifdef inUnix