summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-12-05 06:57:58 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-12-05 06:57:58 -0800
commit5d2b6ed32c38078efed26fd31f30f0d3569bf3db (patch)
treea46adb6b783a1266116c7b0f56d90d26094fa1c0 /configure
parentc9684709acb26c54ffa0ec04cee2cc46b1ba56be (diff)
downloadtxr-5d2b6ed32c38078efed26fd31f30f0d3569bf3db.tar.gz
txr-5d2b6ed32c38078efed26fd31f30f0d3569bf3db.tar.bz2
txr-5d2b6ed32c38078efed26fd31f30f0d3569bf3db.zip
* configure: Bugfix: the "share" directory has to be
symbolically linked. Without this, tests which require txr to have access to its library do not work.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure b/configure
index 0c60f899..a11c9c63 100755
--- a/configure
+++ b/configure
@@ -543,6 +543,8 @@ esac
if [ "$source_dir" != "." ] ; then
printf "Symlinking Makefile -> $source_dir/Makefile\n"
ln -sf "$source_dir/Makefile" .
+ printf "Symlinking share -> $source_dir/share\n"
+ ln -sf "$source_dir/share" .
else
printf "Warning: its recommended to build in a separate directory\n"
fi