diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2013-01-03 02:52:50 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2013-01-03 02:52:50 +0100 |
commit | 58e76a64b46791406277d574deecb081f230b910 (patch) | |
tree | b320e2aae5c1d911cb3ba41009c3b1e95f7ee632 /nss | |
parent | dfbcb34441fed0d38e7c86f32d659ba8ab52640f (diff) |
one more place for forcing windows path in nss build
Diffstat (limited to 'nss')
-rw-r--r-- | nss/nss.windows.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/nss/nss.windows.patch b/nss/nss.windows.patch index 935943bf031b..0d4ce1b5baea 100644 --- a/nss/nss.windows.patch +++ b/nss/nss.windows.patch @@ -9,3 +9,14 @@ endif $(OBJDIR)/%.$(OBJ_SUFFIX): %.cpp +--- misc/nss-3.13.5/mozilla/security/coreconf/rules.mk 2008-12-03 00:24:39.000000000 +0100 ++++ misc/build/nss-3.13.5/mozilla/security/coreconf/rules.mk 2009-11-27 13:36:22.662753328 +0100 +@@ -411,7 +411,7 @@ + endif + + # The quotes allow absolute paths to contain spaces. +-core_abspath = "$(if $(findstring :,$(1)),$(1),$(if $(filter /%,$(1)),$(1),$(PWD)/$(1)))" ++core_abspath = "$(if $(findstring :,$(1)),$(1),$(if $(filter /%,$(shell cygpath -m $(1))),$(1),$(shell cygpath -m $(PWD)/$(1))))" + + $(OBJDIR)/$(PROG_PREFIX)%$(OBJ_SUFFIX): %.c + @$(MAKE_OBJDIR) |