- Timestamp:
- 2017-04-06T20:29:23Z (8 years ago)
- Branches:
- master
- Children:
- 952e264
- Parents:
- b097945 (diff), c9e9c9c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
rb097945 r0515063 39 39 purple=0 40 40 41 verbose=0 41 42 doc=1 42 43 debug=0 … … 125 126 --pidfile=... $pidfile 126 127 --config=... $config 128 129 --verbose=0/1 Disable/enable verbose build $verbose 127 130 128 131 --msn=0/1 Disable/enable MSN part $msn … … 282 285 debug=1 283 286 fi 287 288 if [ "$verbose" = "0" ]; then 289 echo 'VERBOSE=@' >> Makefile.settings 290 else 291 echo 'VERBOSE=' >> Makefile.settings 292 fi 293 294 cat <<EOF >>Makefile.settings 295 296 # Enable/disable output verbosity 297 ifdef V 298 ifeq (\$(V),1) 299 VERBOSE= 300 else 301 VERBOSE=@ 302 endif 303 endif 304 305 EOF 284 306 285 307 if [ "$debug" = "1" ]; then
Note: See TracChangeset
for help on using the changeset viewer.