89726baea9
The heirloom-mailx Makefile runs makeconfig if this has not been done before. In a parallel build, this means makeconfig may be run several times in parallel because there are two targets that depend on makeconfig. See for instance http://autobuild.buildroot.net/results/d24854be69961f71db189f9d804d4bd2cfa078da To avoid this, run makeconfig in the configure step, which is not parallel. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
33 lines
851 B
Makefile
33 lines
851 B
Makefile
#############################################################
|
|
#
|
|
# heirloom-mailx
|
|
#
|
|
#############################################################
|
|
|
|
HEIRLOOM_MAILX_VERSION = 12.5
|
|
HEIRLOOM_MAILX_SOURCE = heirloom-mailx_$(HEIRLOOM_MAILX_VERSION).orig.tar.gz
|
|
HEIRLOOM_MAILX_SITE = http://snapshot.debian.org/archive/debian/20110427T035506Z/pool/main/h/heirloom-mailx/
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
HEIRLOOM_MAILX_DEPENDENCIES += openssl
|
|
endif
|
|
|
|
define HEIRLOOM_MAILX_CONFIGURE_CMDS
|
|
(cd $(@D); $(TARGET_CONFIGURE_OPTS) $(SHELL) ./makeconfig)
|
|
endef
|
|
|
|
define HEIRLOOM_MAILX_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define HEIRLOOM_MAILX_INSTALL_TARGET_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \
|
|
PREFIX=/usr \
|
|
UCBINSTALL=$(INSTALL) \
|
|
STRIP=/bin/true \
|
|
DESTDIR=$(TARGET_DIR) \
|
|
install
|
|
endef
|
|
|
|
$(eval $(call GENTARGETS))
|