diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | configure | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -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. @@ -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 |