Update of /cvsroot/openfirst/www/htdocs/nightly
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22190/www/htdocs/nightly
Modified Files:
Makefile
Log Message:
Added quotes because optparse interprets hyphens as well.
Index: Makefile
===================================================================
RCS file: /cvsroot/openfirst/www/htdocs/nightly/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Makefile 21 Nov 2005 18:37:32 -0000 1.2
--- Makefile 21 Nov 2005 19:48:17 -0000 1.3
***************
*** 4,12 ****
$(modules) :
! ./package.py $@-nightly $(subst $(mprefix),,$@)
# This module is always available
openfirst.base :
! ./package.py openfirst.base-nightly base
#Psuedo-target to display help
--- 4,12 ----
$(modules) :
! ./package.py "$@-nightly" $(subst $(mprefix),,$@)
# This module is always available
openfirst.base :
! ./package.py "openfirst.base-nightly" base
#Psuedo-target to display help
***************
*** 27,35 ****
# Modules part of the standard distribution should go here
main :
! ./package.py main-nightly base awards
# Modules part of the SDK go here
sdk :
! ./package.py sdk-nightly modules
all : main sdk openfirst.base $(modules)
--- 27,35 ----
# Modules part of the standard distribution should go here
main :
! ./package.py "main-nightly" base awards
# Modules part of the SDK go here
sdk :
! ./package.py "sdk-nightly" modules
all : main sdk openfirst.base $(modules)
|