summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rwxr-xr-xconfigure2
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index abd77da6..24106c8d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2014-12-05 Kaz Kylheku <kaz@kylheku.com>
+
+ * 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.
+
2014-12-04 Kaz Kylheku <kaz@kylheku.com>
TXR now builds optimized and debug at the same time.
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