aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
29 lines
682 B
Makefile
29 lines
682 B
Makefile
################################################################################
|
|
#
|
|
# sed
|
|
#
|
|
################################################################################
|
|
|
|
SED_VERSION = 4.2.2
|
|
SED_SITE = $(BR2_GNU_MIRROR)/sed
|
|
SED_LICENSE = GPLv3
|
|
SED_LICENSE_FILES = COPYING
|
|
|
|
SED_CONF_OPTS = --bindir=/usr/bin \
|
|
--libdir=/lib \
|
|
--libexecdir=/usr/lib \
|
|
--sysconfdir=/etc \
|
|
--datadir=/usr/share \
|
|
--localstatedir=/var \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--include=$(STAGING_DIR)/usr/include
|
|
|
|
define SED_MOVE_BINARY
|
|
mv $(TARGET_DIR)/usr/bin/sed $(TARGET_DIR)/bin/
|
|
endef
|
|
|
|
SED_POST_INSTALL_TARGET_HOOKS = SED_MOVE_BINARY
|
|
|
|
$(eval $(autotools-package))
|