diff options
| author | Florin <[email protected]> | 2013-11-22 02:07:08 +0100 |
|---|---|---|
| committer | Florin <[email protected]> | 2013-11-22 02:07:08 +0100 |
| commit | c89d59c38af71d6388a57f46327201f73ed2ebc9 (patch) | |
| tree | d5b8248218863fb9a88f74bc695b2b38f4d550f9 | |
| parent | Merge pull request #3287 (diff) | |
| download | discoin-c89d59c38af71d6388a57f46327201f73ed2ebc9.tar.xz discoin-c89d59c38af71d6388a57f46327201f73ed2ebc9.zip | |
Remove '/': prefix always starts with '/'
brew --prefix retruns a fully qualified path, so using -L/$prefix results in a path with two leading '/'.
| -rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 647be8f2e..df9443895 100644 --- a/configure.ac +++ b/configure.ac @@ -243,7 +243,7 @@ case $host in bdb_prefix=`$BREW --prefix berkeley-db4` export PKG_CONFIG_PATH="$openssl_prefix/lib/pkgconfig:$PKG_CONFIG_PATH" CPPFLAGS="$CPPFLAGS -I$bdb_prefix/include" - LIBS="$LIBS -L/$bdb_prefix/lib" + LIBS="$LIBS -L$bdb_prefix/lib" fi fi |