mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 01:48:05 +00:00
Partial fix for 105271
This commit is contained in:
parent
04173d6cc2
commit
ff8167e83b
@ -113,11 +113,13 @@ endif
|
||||
# we use a relative pathname as NSPR's prefix on Windows.
|
||||
#
|
||||
|
||||
USEABSPATH=':'
|
||||
USEABSPATH="YES"
|
||||
ifeq ($(OS_ARCH),WINNT)
|
||||
USEABSPATH=$(findstring :,$(shell pwd))
|
||||
ifeq (,$(findstring :,$(shell pwd)))
|
||||
USEABSPATH="NO"
|
||||
endif
|
||||
ifeq ($(USEABSPATH),':')
|
||||
endif
|
||||
ifeq ($(USEABSPATH),"YES")
|
||||
NSPR_PREFIX = $(shell pwd)/../../dist/$(OBJDIR_NAME)
|
||||
else
|
||||
NSPR_PREFIX = $$(topsrcdir)/../dist/$(OBJDIR_NAME)
|
||||
|
Loading…
Reference in New Issue
Block a user