diff options
author | Matt Corallo <matt@bluematt.me> | 2011-12-23 02:24:46 -0800 |
---|---|---|
committer | Matt Corallo <matt@bluematt.me> | 2011-12-23 02:24:46 -0800 |
commit | 7415b805c492981992f5c0eb7969fa26ca62b629 (patch) | |
tree | d4a2410d828927c4210c6aa520b749317112cbbe /contrib/gitian-descriptors | |
parent | 2e17ac83c65b65fe2037b8c8941c25e288905903 (diff) |
Fix #722.
Diffstat (limited to 'contrib/gitian-descriptors')
-rw-r--r-- | contrib/gitian-descriptors/gitian.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gitian-descriptors/gitian.yml b/contrib/gitian-descriptors/gitian.yml index 65005c61ff..d0f8decb7a 100644 --- a/contrib/gitian-descriptors/gitian.yml +++ b/contrib/gitian-descriptors/gitian.yml @@ -39,7 +39,7 @@ script: | cp $OUTDIR/src/COPYING $OUTDIR cd src sed 's/$(DEBUGFLAGS)//' -i makefile.unix - make -f makefile.unix STATIC=1 DEFS="-I$INSTDIR/include -L$INSTDIR/lib" $MAKEOPTS bitcoind USE_UPNP=0 USE_SSL=1 + make -f makefile.unix STATIC=1 OPENSSL_INCLUDE_PATH="$INSTDIR/include" OPENSSL_LIB_PATH="$INSTDIR/lib" $MAKEOPTS bitcoind USE_UPNP=0 USE_SSL=1 mkdir -p $OUTDIR/bin/$GBUILD_BITS install -s bitcoind $OUTDIR/bin/$GBUILD_BITS cd .. |