]> Git Repo - VerusCoin.git/commitdiff
Remove '/': prefix always starts with '/'
authorFlorin <[email protected]>
Fri, 22 Nov 2013 01:07:08 +0000 (02:07 +0100)
committerFlorin <[email protected]>
Fri, 22 Nov 2013 01:07:08 +0000 (02:07 +0100)
brew --prefix retruns a fully qualified path, so using -L/$prefix results in a path with two leading '/'.

configure.ac

index 647be8f2e6269762b589783d5a9ea637faa6d6df..df9443895401ee0453e493169166eb109efee44c 100644 (file)
@@ -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
 
This page took 0.02704 seconds and 4 git commands to generate.