Skip to content

Commit

Permalink
build: increase verbosity on Makepkgs configure failure
Browse files Browse the repository at this point in the history
  • Loading branch information
natoscott committed May 2, 2024
1 parent 3353ae4 commit 4ecdbbe
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makepkgs
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,11 @@ configure_pcp()
else
($configure $configopts 2>&1 || touch $tmp/failed) >>"$LOGDIR/pcp" 2>&1
fi
[ -f $tmp/failed ] && build_failure Configure
if [ -f $tmp/failed ]
then
test -f config.log && cat config.log | tee -a "$LOGDIR/pcp"
build_failure Configure
fi
$cfgonly && exit 0
}

Expand Down

0 comments on commit 4ecdbbe

Please sign in to comment.