862db5f610
PSMISC_CONF_OPTS is overridden in a conditional since commit
953b0f4de8
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
20 lines
613 B
Makefile
20 lines
613 B
Makefile
################################################################################
|
|
#
|
|
# psmisc
|
|
#
|
|
################################################################################
|
|
|
|
PSMISC_VERSION = 23.4
|
|
PSMISC_SITE = http://downloads.sourceforge.net/project/psmisc/psmisc
|
|
PSMISC_SOURCE = psmisc-$(PSMISC_VERSION).tar.xz
|
|
PSMISC_LICENSE = GPL-2.0+
|
|
PSMISC_LICENSE_FILES = COPYING
|
|
PSMISC_DEPENDENCIES = ncurses $(TARGET_NLS_DEPENDENCIES)
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_SSP),)
|
|
# Don't force -fstack-protector when SSP is not available in toolchain
|
|
PSMISC_CONF_OPTS += --disable-harden-flags
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|