3d680bf0dd
The opkg configure.ac uses the PKG_CHECK_MODULES() m4 macro, which is provided by the .m4 files installed by host-pkgconf, so we must have this package as a dependency. Fixes: http://autobuild.buildroot.org/results/069fcab6e7dd5a1f07251ba6f52f65643a2f7594/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
25 lines
635 B
Makefile
25 lines
635 B
Makefile
#############################################################
|
|
#
|
|
# opkg
|
|
#
|
|
#############################################################
|
|
|
|
OPKG_VERSION = 635
|
|
OPKG_SOURCE = opkg-$(OPKG_VERSION).tar.gz
|
|
OPKG_SITE = http://opkg.googlecode.com/svn/trunk/
|
|
OPKG_SITE_METHOD = svn
|
|
OPKG_INSTALL_STAGING = YES
|
|
OPKG_CONF_OPT = --disable-curl --disable-gpg
|
|
OPKG_AUTORECONF = YES
|
|
# Uses PKG_CHECK_MODULES() in configure.ac
|
|
OPKG_DEPENDENCIES = host-pkgconf
|
|
|
|
# Ensure directory for lockfile exists
|
|
define OPKG_CREATE_LOCKDIR
|
|
mkdir -p $(TARGET_DIR)/usr/lib/opkg
|
|
endef
|
|
|
|
OPKG_POST_INSTALL_TARGET_HOOKS += OPKG_CREATE_LOCKDIR
|
|
|
|
$(eval $(autotools-package))
|