Changeset 08b0ed8 for configure


Ignore:
Timestamp:
2017-03-12T04:16:58Z (8 years ago)
Author:
dx <dx@…>
Branches:
master
Children:
16e4a9f
Parents:
65d0dfd
git-author:
Tim Harder <radhermit@…> (24-01-17 18:33:23)
git-committer:
dx <dx@…> (12-03-17 04:16:58)
Message:

configure: respect autotools-like verbose flags for make

In other words, running $(make V=1) will force a verbose build while
$(make V=0) will force a silent build regardless of the verbose option
set by the configure script.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure

    r65d0dfd r08b0ed8  
    291291        echo 'VERBOSE=' >> Makefile.settings
    292292fi
     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
    293306
    294307if [ "$debug" = "1" ]; then
Note: See TracChangeset for help on using the changeset viewer.