aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-01-30 18:19:17 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-01-30 18:19:17 +0200
commit9338feec3d11a8a912d951671963311b7118f2fe (patch)
tree3f4ace20e44fb61fb4582757fe908fc82a904fdb
parentd94456c76f69093d244bcc58fbf438f63fb659f6 (diff)
Make search for libbutl more robust
-rwxr-xr-xbootstrap4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap b/bootstrap
index 46c1ae9..6ddb872 100755
--- a/bootstrap
+++ b/bootstrap
@@ -56,7 +56,7 @@ if test -z "$libbutl"; then
if test -d libbutl; then
libbutl=libbutl
else
- libbutl=`echo libbutl-*`
+ libbutl=`echo libbutl-*/`
if test ! -d "$libbutl"; then
libbutl=
fi
@@ -67,7 +67,7 @@ if test -z "$libbutl"; then
if test -d ../libbutl; then
libbutl=../libbutl
else
- libbutl=`echo ../libbutl-*`
+ libbutl=`echo ../libbutl-*/`
if test ! -d "$libbutl"; then
libbutl=
fi