Skip to content

Commit c89d59c

Browse files
author
Florin
committed
Remove '/': prefix always starts with '/'
brew --prefix retruns a fully qualified path, so using -L/$prefix results in a path with two leading '/'.
1 parent 35454b3 commit c89d59c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ case $host in
243243
bdb_prefix=`$BREW --prefix berkeley-db4`
244244
export PKG_CONFIG_PATH="$openssl_prefix/lib/pkgconfig:$PKG_CONFIG_PATH"
245245
CPPFLAGS="$CPPFLAGS -I$bdb_prefix/include"
246-
LIBS="$LIBS -L/$bdb_prefix/lib"
246+
LIBS="$LIBS -L$bdb_prefix/lib"
247247
fi
248248
fi
249249

0 commit comments

Comments
 (0)