478ea1a12d
Now that <pkg>_INSTALL_TARGET_OPT always defaults to 'DESTDIR=$(TARGET_DIR) install', we can remove the <pkg>_INSTALL_TARGET_OPT definition from a lot of packages. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
17 lines
405 B
Makefile
17 lines
405 B
Makefile
#############################################################
|
|
#
|
|
# libnl
|
|
#
|
|
#############################################################
|
|
|
|
LIBNL_VERSION = 1.1
|
|
LIBNL_SOURCE = libnl-$(LIBNL_VERSION).tar.gz
|
|
LIBNL_SITE = http://distfiles.gentoo.org/distfiles
|
|
LIBNL_INSTALL_STAGING = YES
|
|
|
|
define LIBNL_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/usr/lib/libnl.so*
|
|
endef
|
|
|
|
$(eval $(call AUTOTARGETS,package,libnl))
|