*** empty log message ***

This commit is contained in:
Mark Mine 2000-10-11 02:13:55 +00:00
parent dfcc49d732
commit 3b79e79a9d
2 changed files with 4 additions and 5 deletions

View File

@ -32,8 +32,7 @@ ifneq (,$(NSPR_LIB))
endif
ifeq (WIN32_VC,$(PENV_COMPILER))
lt := $(foreach path,$(LPATH_DIRS),$(shell cygpath -w $(path)))
LPATH := $(patsubst %,-LIBPATH:"%",$(lt))
LPATH := $(foreach path,$(LPATH_DIRS),-LIBPATH:"$(shell cygpath -w $(path))")
else # NON-WIN32_VC
LPATH := $(patsubst %,-L%,$(LPATH_DIRS))
endif # WIN32_VC

View File

@ -92,11 +92,11 @@ IPATH_DIRS += $(DTOOL)
# Convert CT_INCLUDE_PATH to cc/CC compatible flag string
ifeq (WIN32_VC,$(PENV_COMPILER))
IPATH_DIRS := $(foreach path,$(IPATH_DIRS),$(shell cygpath -w $(path)))
IPATH := $(foreach path,$(IPATH_DIRS),-I"$(shell cygpath -w $(path))")
SYS_IPATH := -I"$(shell cygpath -w /msvc98/Include)"
endif
else
IPATH := $(patsubst %,-I"%",$(IPATH_DIRS))
endif
##### Playstation2 can't handle .so's. The rename to .a's is handled here
##### and acted upon in Makefile.so.rules. (CSN)