Changeset 2484
- Timestamp:
- 12/14/09 16:28:11
- Files:
-
- trunk/build/quickstart/linux/bw (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build/quickstart/linux/bw
r2370 r2484 41 41 echo "" 42 42 echo " PROJECT optionally defines the package to build and is none or more of" 43 echo " -carddav Target is for the CardDAV build, otherwise it's a calendar build" 43 echo " -carddav Target is for the CardDAV build" 44 echo " -monitor Target is for the bedework monitor application" 44 45 echo " -naming Target is for the abstract naming api" 45 46 echo " The default is a calendar build" … … 91 92 bedework= 92 93 naming= 94 monitor= 93 95 94 96 if [ "$1" = "" ] ; then … … 141 143 shift 142 144 ;; 145 -monitor) 146 monitor="yes" 147 pkgdefault= 148 shift 149 ;; 143 150 -naming) 144 151 naming="yes" … … 188 195 fi 189 196 197 if [ "$monitor" != "" ] ; then 198 cd $QUICKSTART_HOME/MonitorApp 199 fi 200 190 201 if [ "$naming" != "" ] ; then 191 202 cd $QUICKSTART_HOME/bwnaming
