Skip to content

Commit

Permalink
Don't use --debug flag by default
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Aug 7, 2012
1 parent 87a7ac3 commit bd1e9bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nave.sh
Expand Up @@ -245,7 +245,7 @@ build () {
( cd -- "$src"
[ -f ~/.naverc ] && . ~/.naverc || true
if [ "$NAVE_CONFIG" == "" ]; then
NAVE_CONFIG=("--debug")
NAVE_CONFIG=()
fi
JOBS=$jobs ./configure "${NAVE_CONFIG[@]}" --prefix="$2" \
|| fail "Failed to configure $version"
Expand Down Expand Up @@ -303,9 +303,9 @@ nave_test () {
( cd -- "$src"
[ -f ~/.naverc ] && . ~/.naverc || true
if [ "$NAVE_CONFIG" == "" ]; then
NAVE_CONFIG=("--debug")
NAVE_CONFIG=()
fi
./configure "${NAVE_CONFIG[@]}" || fail "failed to ./configure --debug"
./configure "${NAVE_CONFIG[@]}" || fail "failed to ./configure"
make test-all || fail "Failed tests"
) || fail "failed"
}
Expand Down

0 comments on commit bd1e9bb

Please sign in to comment.