de-windowsify pathnames

This commit is contained in:
David Rose 2002-05-24 23:46:26 +00:00
parent 73f2ab13f2
commit b6e2a41d60
3 changed files with 5 additions and 6 deletions

View File

@ -34,7 +34,7 @@
// Where should we install DIRECT?
#if $[or $[CTPROJS],$[DIRECT]]
#set DTOOL $[unixfilename $[DIRECT]]
#set DIRECT $[unixfilename $[DIRECT]]
#define DIRECT_INSTALL $[DIRECT]
#define DIRECT_INSTALL_OTHER $(DIRECT)
#if $[eq $[DIRECT],]
@ -56,4 +56,3 @@
#endif
#include $[PANDA_SOURCE]/Package.pp

View File

@ -12,7 +12,6 @@
// responsible for explicitly including all of the relevent Config.pp
// files.
// What is the name and version of this source tree?
#if $[eq $[PACKAGE],]
#define PACKAGE panda

View File

@ -24,7 +24,7 @@
// Where should we find the PANDA source directory?
#if $[or $[CTPROJS],$[PANDA]]
// If we are presently attached, use the environment variable.
#define PANDA_SOURCE $[PANDA]
#define PANDA_SOURCE $[unixfilename $[PANDA]]
#if $[eq $[PANDA],]
#error You seem to be attached to some trees, but not PANDA!
#endif
@ -36,14 +36,15 @@
// Where should we install PANDATOOL?
#if $[or $[CTPROJS],$[PANDATOOL]]
#set PANDATOOL $[unixfilename $[PANDATOOL]]
#define PANDATOOL_INSTALL $[PANDATOOL]
#define PANDATOOL_INSTALL_OTHER $(PANDATOOL)
#if $[eq $[PANDATOOL],]
#error You seem to be attached to some trees, but not PANDATOOL!
#endif
#else
#defer PANDATOOL_INSTALL $[INSTALL_DIR]
#defer PANDATOOL_INSTALL_OTHER $[INSTALL_DIR]
#defer PANDATOOL_INSTALL $[unixfilename $[INSTALL_DIR]]
#defer PANDATOOL_INSTALL_OTHER $[unixfilename $[INSTALL_DIR]]
#endif