*** no comment ***
This commit is contained in:
parent
c7f694967c
commit
bc3b0b5577
2 changed files with 8 additions and 4 deletions
|
|
@ -7,9 +7,11 @@
|
||||||
#
|
#
|
||||||
# 0 0 * * * $HOME/src/ledger/run_verify.sh /tmp
|
# 0 0 * * * $HOME/src/ledger/run_verify.sh /tmp
|
||||||
#
|
#
|
||||||
# Note that this script should be run as root! Also, whether on
|
# Note that this script should be run as root, otherwise it will be
|
||||||
# success or failure the build log and build products are left in the
|
# unable to clean up after itself (since make distcheck creates files
|
||||||
# temporary directory for later examination if desired.
|
# owned by a different user). Also, whether on success or failure the
|
||||||
|
# build log and build products are left in the temporary directory for
|
||||||
|
# later examination if desired.
|
||||||
|
|
||||||
SRCDIR=$(dirname $0)
|
SRCDIR=$(dirname $0)
|
||||||
|
|
||||||
|
|
@ -26,3 +28,5 @@ cp -p "$SRCDIR"/verify.sh . || exit 1
|
||||||
(./verify.sh > verify.out 2>&1 || (cat verify.out; exit 1))
|
(./verify.sh > verify.out 2>&1 || (cat verify.out; exit 1))
|
||||||
|
|
||||||
rm -f verify.sh
|
rm -f verify.sh
|
||||||
|
|
||||||
|
exit 0
|
||||||
|
|
|
||||||
|
|
@ -75,7 +75,7 @@ function build_distcheck_from_distrib() {
|
||||||
dup_working_tree distcheck_distrib || exit 1
|
dup_working_tree distcheck_distrib || exit 1
|
||||||
cd distcheck_distrib || exit 1
|
cd distcheck_distrib || exit 1
|
||||||
./configure CPPFLAGS="$MY_CPPFLAGS" LDFLAGS="$MY_LDFLAGS" || exit 1
|
./configure CPPFLAGS="$MY_CPPFLAGS" LDFLAGS="$MY_LDFLAGS" || exit 1
|
||||||
make distcheck || exit 1
|
make CPPFLAGS="$MY_CPPFLAGS" LDFLAGS="$MY_LDFLAGS" distcheck || exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
# Finally, we have the ordinary `build_ledger' function, which builds
|
# Finally, we have the ordinary `build_ledger' function, which builds
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue