Changeset 36343 for main


Ignore:
Timestamp:
2022-07-29T11:51:54+12:00 (21 months ago)
Author:
kjdon
Message:

changed the name of OPENSSL_HOST to GS_OPENSSL_HOST to make it clear that its a variable that gs is defining, not one that comes from openssl

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/build-src/packages/configure

    r36341 r36343  
    189189    ssl_status=$?
    190190   
    191 elif [[ "x$OPENSSL_HOST" != "x" ]] ; then
    192     echo "have found environment variable OPENSSL_HOST - using that with Configure, instead of running config which will guess the host"
    193     echo ./Configure --prefix=$PACKAGES/openssl --openssldir=$PACKAGES/openssl  no-shared $OPENSSL_HOST
     191elif [[ "x$GS_OPENSSL_HOST" != "x" ]] ; then
     192    echo "have found environment variable GS_OPENSSL_HOST - using that with Configure, instead of running config which will guess the host"
     193    echo ./Configure --prefix=$PACKAGES/openssl --openssldir=$PACKAGES/openssl  no-shared $GS_OPENSSL_HOST
    194194    # we found that the following needs bash to run as running it directly here (from within ant)
    195195    # as ./Configure had an error, even though the command worked fine on the command line
    196     ./Configure --prefix=$PACKAGES/openssl --openssldir=$PACKAGES/openssl  no-shared $OPENSSL_HOST
     196    ./Configure --prefix=$PACKAGES/openssl --openssldir=$PACKAGES/openssl  no-shared $GS_OPENSSL_HOST
    197197    ssl_status=$?
    198198
Note: See TracChangeset for help on using the changeset viewer.