From 3d2035ea86ce70c3a9f90120578271399ffd961e Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 20 Nov 2008 15:08:34 +0000 Subject: [PATCH] * Blindly doing a replacement of occurences of $bindir (when running the tests) is a bad idea when $bindir = /usr and some programs (like perl) live there. Fortunately it doesn't seem to be needed anymore. --- tests/init.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/init.sh b/tests/init.sh index 9beaf086d6..58463684ed 100644 --- a/tests/init.sh +++ b/tests/init.sh @@ -65,7 +65,6 @@ for i in \ $NIX_BIN_DIR/nix/readmanifest.pm \ ; do sed < $i > $i.tmp \ - -e "s^$REAL_BIN_DIR^$NIX_BIN_DIR^" \ -e "s^$REAL_LIBEXEC_DIR^$NIX_LIBEXEC_DIR^" \ -e "s^$REAL_LOCALSTATE_DIR^$NIX_LOCALSTATE_DIR^" \ -e "s^$REAL_DATA_DIR^$NIX_DATA_DIR^" \