diff options
author | Lars Wirzenius <lars.wirzenius@codethink.co.uk> | 2013-03-20 13:59:22 +0000 |
---|---|---|
committer | Jonathan Maw <jonathan.maw@codethink.co.uk> | 2013-03-20 14:13:41 +0000 |
commit | a515cddf9075be04146cef584255dd58b726b936 (patch) | |
tree | 4a2dd5f845deaf25e7bc93f4139dd855bbcc4814 /tests.build/stratum-overlap-warns.setup | |
parent | 6dcc1b4eb2a3856f3eae48e50cb9b1b4c7d17432 (diff) | |
download | morph-a515cddf9075be04146cef584255dd58b726b936.tar.gz |
Use a relative symlink in test chunk
The absolute one made the test suite fail in my VM, and is not the
right thing to do anyway. $DESTDIR/usr/bin and $DESTDIR/bin are meant
to be the same directory here, not $DESTDIR/usr/bin and /bin.
Diffstat (limited to 'tests.build/stratum-overlap-warns.setup')
-rwxr-xr-x | tests.build/stratum-overlap-warns.setup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests.build/stratum-overlap-warns.setup b/tests.build/stratum-overlap-warns.setup index 626f2094..5ebd217c 100755 --- a/tests.build/stratum-overlap-warns.setup +++ b/tests.build/stratum-overlap-warns.setup @@ -74,7 +74,7 @@ cat <<EOF >dirs.morph "kind": "chunk", "install-commands": [ "mkdir -p \$DESTDIR/bin", - "ln -s / \$DESTDIR/usr" + "ln -s .. \$DESTDIR/usr" ] } EOF |