diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-12-05 06:57:58 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-12-05 06:57:58 -0800 |
commit | 5d2b6ed32c38078efed26fd31f30f0d3569bf3db (patch) | |
tree | a46adb6b783a1266116c7b0f56d90d26094fa1c0 /configure | |
parent | c9684709acb26c54ffa0ec04cee2cc46b1ba56be (diff) | |
download | txr-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-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 |