Adjusted names of config variables in test_hardlinks

This commit is contained in:
Thomas Schmitt 2011-06-28 06:51:40 +00:00
parent e81c3f6222
commit 04cff73883
1 changed files with 5 additions and 5 deletions

View File

@ -34,17 +34,17 @@ config_by_var() {
test -n "$RELENG_XORRISO" && xorriso="$RELENG_XORRISO" && RELENG_XORRISO= test -n "$RELENG_XORRISO" && xorriso="$RELENG_XORRISO" && RELENG_XORRISO=
test -n "$IMG" && image_file="$IMG" && IMG= test -n "$IMG" && image_file="$IMG" && IMG=
test -n "$RELENG_TMPIMAGE" && image_file="$RELENG_TMPIMAGE" \ test -n "$RELENG_WORKIMAGE" && image_file="$RELENG_WORKIMAGE" \
&& RELENG_TMPIMAGE= && RELENG_WORKIMAGE=
# This is not $DIR, which would exist before and after the test, # This is not $DIR, which would exist before and after the test,
# but a temporary directory which may not exist before. # but a temporary directory which may not exist before.
test -n "$RELENG_TMPDIR" && on_disk="$RELENG_TMPDIR" && RELENG_TMPDIR= test -n "$RELENG_WORKDIR" && on_disk="$RELENG_WORKDIR" && RELENG_WORKDIR=
test -n "$RELENG_ISODIR" && in_iso="$RELENG_ISODIR" && RELENG_ISODIR= test -n "$RELENG_ISODIR" && in_iso="$RELENG_ISODIR" && RELENG_ISODIR=
test -n "$RELENG_TMPCOPYDIR" && copy_on_disk="$RELENG_TMPCOPYDIR" \ test -n "$RELENG_WORKCOPYDIR" && copy_on_disk="$RELENG_WORKCOPYDIR" \
&& RELENG_TMPCOPYDIR= && RELENG_WORKCOPYDIR=
} }