From 04cff738837ad5a527a9bbc6756bcabf707a6334 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Tue, 28 Jun 2011 06:51:40 +0000 Subject: [PATCH] Adjusted names of config variables in test_hardlinks --- releng/test_hardlinks | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/releng/test_hardlinks b/releng/test_hardlinks index 3d22ff8b..8c8b584d 100755 --- a/releng/test_hardlinks +++ b/releng/test_hardlinks @@ -34,17 +34,17 @@ config_by_var() { test -n "$RELENG_XORRISO" && xorriso="$RELENG_XORRISO" && RELENG_XORRISO= test -n "$IMG" && image_file="$IMG" && IMG= - test -n "$RELENG_TMPIMAGE" && image_file="$RELENG_TMPIMAGE" \ - && RELENG_TMPIMAGE= + test -n "$RELENG_WORKIMAGE" && image_file="$RELENG_WORKIMAGE" \ + && RELENG_WORKIMAGE= # This is not $DIR, which would exist before and after the test, # 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_TMPCOPYDIR" && copy_on_disk="$RELENG_TMPCOPYDIR" \ - && RELENG_TMPCOPYDIR= + test -n "$RELENG_WORKCOPYDIR" && copy_on_disk="$RELENG_WORKCOPYDIR" \ + && RELENG_WORKCOPYDIR= }