diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-06-25 13:38:32 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-06-25 13:38:32 -0700 |
commit | a3a309b9e505d8b9bb551b8c1f883150efb8ab04 (patch) | |
tree | 5cbde3e5d2ceb330f8e1e56a3e30642be7d31cae | |
parent | 4f5817aaa0432a07b537374be21ecf912c000c87 (diff) | |
download | txr-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-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |