summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcls%seawood.org <devnull@localhost>2001-02-06 04:51:12 +0000
committercls%seawood.org <devnull@localhost>2001-02-06 04:51:12 +0000
commitdcb0c176be9e36b61fa268c64ab9401f5c0efa31 (patch)
treef64304a779a505286ff10b7b94619b086fc39e95
parentcd7acad4e0d8a4f6de75b4889854bd312c7e2bf4 (diff)
downloadnspr-hg-dcb0c176be9e36b61fa268c64ab9401f5c0efa31.tar.gz
Explicitly run configure for win32 instead of config.status as sh/cmd.exe do not properly handle calling configure from within config.status
-rw-r--r--Makefile.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index 14d7c714..33d70470 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -38,7 +38,11 @@ all:: config.status export
include $(topsrcdir)/config/rules.mk
config.status:: configure
+ifeq ($(OS_ARCH),WINNT)
+ sh $(srcdir)/configure --no-create --no-recursion
+else
./config.status --recheck && ./config.status
+endif
#
# The -ll option of zip converts CR LF to LF.