mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Build: enable silent build in makerpms.sh
Build called from makerpms.sh is not verbose by default anymore. It still prints all directories and files it builds but the long command lines are hidden by default. It has the advantage that compiler and other warnings are visible to developers right away. If you need to debug something, use --disable-silent-rules to override the default (or call configure manually). https://fedorahosted.org/freeipa/ticket/6418 Reviewed-By: Lukas Slebodnik <lslebodn@redhat.com> Reviewed-By: Christian Heimes <cheimes@redhat.com>
This commit is contained in:
parent
46b6b9e309
commit
1cbd823990
@ -4,7 +4,7 @@ set -o errexit
|
||||
pushd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
test ! -x "configure" && autoreconf -i
|
||||
test ! -f "Makefile" && ./configure "$@"
|
||||
test ! -f "Makefile" && ./configure --enable-silent-rules "$@"
|
||||
make rpms
|
||||
|
||||
popd
|
||||
|
Loading…
Reference in New Issue
Block a user