diff options
| author | Matt Corallo <[email protected]> | 2011-12-23 02:24:46 -0800 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2011-12-23 02:24:46 -0800 |
| commit | 7415b805c492981992f5c0eb7969fa26ca62b629 (patch) | |
| tree | d4a2410d828927c4210c6aa520b749317112cbbe | |
| parent | Fix broken ExtractAddress (refactored, made callers check for addresses in ke... (diff) | |
| download | discoin-7415b805c492981992f5c0eb7969fa26ca62b629.tar.xz discoin-7415b805c492981992f5c0eb7969fa26ca62b629.zip | |
Fix #722.
| -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 65005c61f..d0f8decb7 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 .. |