diff options
| author | Yann E. MORIN <yann.morin.1998@free.fr> | 2015-01-03 17:25:07 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-01-03 21:40:54 +0100 |
| commit | 6457e638b5592ebd860ca331f3dc57d207e387ca (patch) | |
| tree | e32a30e24f9b7765c202a9bb080e6d0ffeef30a2 /package/upx | |
| parent | 616c878ce5ecfef1fc69fe6d87e135b326d63a37 (diff) | |
| download | buildroot-6457e638b5592ebd860ca331f3dc57d207e387ca.tar.gz buildroot-6457e638b5592ebd860ca331f3dc57d207e387ca.zip | |
package/upx: needs zlib
Fixes build issues like, observed on a stripped-down build system:
compress.cpp:32:18: fatal error: zlib.h: No such file or directory
#include <zlib.h>
^
compilation terminated.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/upx')
| -rw-r--r-- | package/upx/upx.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/upx/upx.mk b/package/upx/upx.mk index 30bb03bb6a..400d28328d 100644 --- a/package/upx/upx.mk +++ b/package/upx/upx.mk @@ -10,7 +10,7 @@ UPX_SOURCE = upx-$(UPX_VERSION)-src.tar.bz2 UPX_LICENSE = GPLv2+ UPX_LICENSE_FILES = COPYING -HOST_UPX_DEPENDENCIES = host-ucl +HOST_UPX_DEPENDENCIES = host-ucl host-zlib # We need to specify all, otherwise the default target only prints a message # stating to "please choose a target for 'make'"... :-( |

