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
commita3a309b9e505d8b9bb551b8c1f883150efb8ab04 (patch)
tree5cbde3e5d2ceb330f8e1e56a3e30642be7d31cae
parent4f5817aaa0432a07b537374be21ecf912c000c87 (diff)
downloadtxr-a3a309b9e505d8b9bb551b8c1f883150efb8ab04.tar.gz
txr-a3a309b9e505d8b9bb551b8c1f883150efb8ab04.tar.bz2
txr-a3a309b9e505d8b9bb551b8c1f883150efb8ab04.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