summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-06-25 13:38:32 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-06-25 13:38:32 -0700
commitd112ee487ffc3eb8a9831c2fc3b7dd0b4c9cab97 (patch)
tree5cbde3e5d2ceb330f8e1e56a3e30642be7d31cae
parent2847653afd123d7894bc0deb6dbcf690f923c53c (diff)
downloadtxr-d112ee487ffc3eb8a9831c2fc3b7dd0b4c9cab97.tar.gz
txr-d112ee487ffc3eb8a9831c2fc3b7dd0b4c9cab97.tar.bz2
txr-d112ee487ffc3eb8a9831c2fc3b7dd0b4c9cab97.zip
build: fix broken building in separate directory.
* configure: create a link farm for stdlib, not share, which no longer exists. I missed this because this is an occurrence of "share" not followed by /txr of \txr. Reported by Paul. A. Patience
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index ad3bfb4c..b8b18184 100755
--- a/configure
+++ b/configure
@@ -756,7 +756,7 @@ if [ $(inode "$source_dir") != $(inode ".") ] ; then
printf "Symlinking %s -> $source_dir/%s\n" $x $x
ln -sf "$source_dir/$x" .
done
- for x in share tests; do
+ for x in stdlib tests; do
printf "Tree symlinking %s -> $source_dir/%s\n" $x $x
lndir $source_dir/$x $x
done