From d5f00c4c67d5d9166da4cd13956491de026854f6 Mon Sep 17 00:00:00 2001 From: "seawood%netscape.com" Date: Mon, 13 May 2002 03:55:52 +0000 Subject: [PATCH] Check for non-whitespace instead of alphanumerics when grabbing module names from the REQUIRES list. Bug #141999 sr=alecf --- config/config.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.mak b/config/config.mak index 9b07056106f1..8572757e53b0 100644 --- a/config/config.mak +++ b/config/config.mak @@ -142,7 +142,7 @@ INCS=$(INCS) -I$(PUBLIC) -I$(DIST)\include -I$(XPDIST)\include\nspr # use perl to translate REQUIRES into a proper include line # using \1 instead of $1 because nmake barfs on $1 -!if [echo $(REQUIRES) | perl -pe "s/(\w+)/-I$(XPDIST:\=\/)\\\include\\\\\1/g; print \"REQINCS=$_\";" > reqincs.inc] +!if [echo $(REQUIRES) | perl -pe "s/(\S+)/-I$(XPDIST:\=\/)\\\include\\\\\1/g; print \"REQINCS=$_\";" > reqincs.inc] !endif !else