summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure10
1 files changed, 5 insertions, 5 deletions
diff --git a/configure b/configure
index 9bef1060..8b6e4d7a 100755
--- a/configure
+++ b/configure
@@ -549,12 +549,12 @@ case "$top_srcdir" in
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" .
+ for x in Makefile share tests; do
+ printf "Symlinking %s -> $source_dir/%s\n" $x $x
+ ln -sf "$source_dir/$x" .
+ done
else
- printf "Warning: its recommended to build in a separate directory\n"
+ printf "** Note: its recommended to build in a separate directory\n"
fi
gen_config_make()