diff options
author | Evax Software <[email protected]> | 2011-04-01 11:52:57 +0200 |
---|---|---|
committer | Evax Software <[email protected]> | 2011-04-01 11:52:57 +0200 |
commit | 08176877f54cab75c5820cde22c686db3f9d3f3c (patch) | |
tree | f28bbe01c9ac968072713c32bbcbe8d987329949 /kerl | |
parent | 2a7caf5e32b395eee5d1c840ca8d0c1279489fdd (diff) | |
download | kerl-08176877f54cab75c5820cde22c686db3f9d3f3c.tar.gz kerl-08176877f54cab75c5820cde22c686db3f9d3f3c.tar.bz2 kerl-08176877f54cab75c5820cde22c686db3f9d3f3c.zip |
Point to error log when ./configure fails
Diffstat (limited to 'kerl')
-rwxr-xr-x | kerl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -113,7 +113,7 @@ do_build() { ./configure $KERL_CONFIGURE_OPTIONS > \ $KERL_BASE_DIR/logs/configure_$1.log 2>&1 if [ "$?" -eq 1 ]; then - echo "./configure failed"; + echo "./configure failed, see $KERL_BASE_DIR/logs/configure_$1.log"; exit 1 fi rm -f "$KERL_BASE_DIR/logs/configure_$1.log" |