BUG#: 1772
authorcarson.hovey <carson.hovey>
Thu, 3 Feb 2005 01:55:04 +0000 (01:55 +0000)
committercarson.hovey <carson.hovey>
Thu, 3 Feb 2005 01:55:04 +0000 (01:55 +0000)
TITLE: All command line parameters in Makefiles should be enclosed in double quotes.
DESCRIPTION: Added required quotes.

test/wetest/Makefile

index 6dbeb35a04f39ffc720ebd8924f409f2c8853dc4..6350a515e4b913700bc2f7199d03f758f7041638 100644 (file)
@@ -17,12 +17,12 @@ LOADDIRS = \
 include $(ROOT)/mak/recurse.mak
 
 repository: $(RECURSE_DEPENDS) $(ERROR)
-       @ $(foreach i, $(LOADDIRS), $(MAKESH) $(MAKE) -SC $(i) repository $(NL) )
+       @ $(foreach i, $(LOADDIRS), $(MAKESH) $(MAKE) "-SC" $(i) repository $(NL) )
 
 repositoryServer: $(RECURSE_DEPENDS) $(ERROR)
-       @ $(foreach i, $(LOADDIRS), $(MAKESH) $(MAKE) -SC $(i) repositoryServer $(NL) )
+       @ $(foreach i, $(LOADDIRS), $(MAKESH) $(MAKE) "-SC" $(i) repositoryServer $(NL) )
 
 removerepository: $(RECURSE_DEPENDS) $(ERROR)
-       @ $(foreach i, $(LOADDIRS), $(MAKESH) $(MAKE) -SC $(i) removerepository $(NL) )
+       @ $(foreach i, $(LOADDIRS), $(MAKESH) $(MAKE) "-SC" $(i) removerepository $(NL) )
 
 #DO NOT DELETE THIS LINE