Changeset 0515063 for configure


Ignore:
Timestamp:
2017-04-06T20:29:23Z (8 years ago)
Author:
dequis <dx@…>
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.
Message:

Merge branch 'develop'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    rb097945 r0515063  
    3939purple=0
    4040
     41verbose=0
    4142doc=1
    4243debug=0
     
    125126--pidfile=...                                           $pidfile
    126127--config=...                                            $config
     128
     129--verbose=0/1   Disable/enable verbose build            $verbose
    127130
    128131--msn=0/1       Disable/enable MSN part                 $msn
     
    282285        debug=1
    283286fi
     287
     288if [ "$verbose" = "0" ]; then
     289        echo 'VERBOSE=@' >> Makefile.settings
     290else
     291        echo 'VERBOSE=' >> Makefile.settings
     292fi
     293
     294cat <<EOF >>Makefile.settings
     295
     296# Enable/disable output verbosity
     297ifdef V
     298ifeq (\$(V),1)
     299        VERBOSE=
     300else
     301        VERBOSE=@
     302endif
     303endif
     304
     305EOF
    284306
    285307if [ "$debug" = "1" ]; then
Note: See TracChangeset for help on using the changeset viewer.