diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2014-09-10 08:51:36 -0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-09-13 22:33:05 +0200 |
commit | 1c102abb56a5396c9822bb630b6d1a31f0751548 (patch) | |
tree | 777fa1afb77d25ddbdf8fbe46f97c6103eb85570 /package/tn5250/tn5250.mk | |
parent | 23781ab782f97a61517ba73a093af866d607f39a (diff) | |
download | buildroot-1c102abb56a5396c9822bb630b6d1a31f0751548.tar.gz buildroot-1c102abb56a5396c9822bb630b6d1a31f0751548.zip |
tn5250: fix openssl dir
If openssl devfiles are installed in the host the automatic lookup might
find that and cause issues.
So be explicit on the directory to avoid a search and patch the
directory logic since it's got a bug. Fixes:
http://autobuild.buildroot.net/results/5dd/5ddc8636d6555851f692c0c21f583df235340b19/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/tn5250/tn5250.mk')
-rw-r--r-- | package/tn5250/tn5250.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/tn5250/tn5250.mk b/package/tn5250/tn5250.mk index 2c4c2ad0ba..33f7c0c765 100644 --- a/package/tn5250/tn5250.mk +++ b/package/tn5250/tn5250.mk @@ -12,7 +12,7 @@ TN5250_LICENSE = LGPLv2.1+ TN5250_LICENSE_FILES = COPYING ifeq ($(BR2_PACKAGE_OPENSSL),y) - TN5250_CONF_OPT += --with-ssl + TN5250_CONF_OPT += --with-ssl-dir=$(STAGING_DIR)/usr TN5250_DEPENDENCIES += openssl else TN5250_CONF_OPT += --without-ssl |