Skip to content

Commit

Permalink
Bug 204681: fixed build failure with MKS Toolkit on Windows XP. Handle
Browse files Browse the repository at this point in the history
the more general 0x pattern instead of just 00 in the output of "uname -v".
  • Loading branch information
wtc%netscape.com committed May 7, 2003
1 parent ba82568 commit 72d4819
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions security/coreconf/arch.mk
Expand Up @@ -225,9 +225,8 @@ endif
ifeq ($(OS_ARCH), Windows_NT)
OS_ARCH = WINNT
OS_MINOR_RELEASE := $(shell uname -v)
ifeq ($(OS_MINOR_RELEASE),00)
OS_MINOR_RELEASE = 0
endif
# strip leading 0
OS_MINOR_RELEASE := $(patsubst 0%,%,$(OS_MINOR_RELEASE))
OS_RELEASE := $(OS_RELEASE).$(OS_MINOR_RELEASE)
ifndef CPU_ARCH
CPU_ARCH := $(shell uname -m)
Expand Down

0 comments on commit 72d4819

Please sign in to comment.