Revert "I want shorter build logs"

This reverts commit db169cec66.
This commit is contained in:
Uli Schlachter 2020-08-03 17:43:25 +02:00
parent cd77d65c67
commit 3dec16fb23
1 changed files with 10 additions and 0 deletions

View File

@ -68,6 +68,16 @@ install:
./autogen.sh --prefix=/usr ./autogen.sh --prefix=/usr
make && sudo make install) make && sudo make install)
# Install xcb-errors if needed
- |
set -e
if [[ "$WITH_XCB_ERRORS" == "yes" ]]; then
git clone --depth 1 --recursive https://gitlab.freedesktop.org/xorg/lib/libxcb-errors.git /tmp/xcb-errors
(cd /tmp/xcb-errors
./autogen.sh --prefix=/usr
make && sudo make install)
fi
- | - |
(echo '#!/bin/sh' ; echo 'set -x' ; echo 'gcc -shared -Wl,--no-undefined -o "$@" -ldl -lm') > /tmp/myar (echo '#!/bin/sh' ; echo 'set -x' ; echo 'gcc -shared -Wl,--no-undefined -o "$@" -ldl -lm') > /tmp/myar
chmod a+x /tmp/myar chmod a+x /tmp/myar