From: Peter Korsgaard Date: Wed, 11 Sep 2013 11:05:01 +0000 (+0200) Subject: package: drop unneeded 'call' from {generic,autotools}-package invocation X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=be7f613b90b01cdad0e1348ead3d70f72cbcbab2;p=buildroot.git package: drop unneeded 'call' from {generic,autotools}-package invocation Reported-by: Jerzy Grzegorek Signed-off-by: Peter Korsgaard --- diff --git a/package/dhcpcd/dhcpcd.mk b/package/dhcpcd/dhcpcd.mk index 9d4a72beb4..5296db8744 100644 --- a/package/dhcpcd/dhcpcd.mk +++ b/package/dhcpcd/dhcpcd.mk @@ -39,4 +39,4 @@ endef # NOTE: Even though this package has a configure script, it is not generated # using the autotools, so we have to use the generic package infrastructure. -$(eval $(call generic-package)) +$(eval $(generic-package)) diff --git a/package/jquery-keyboard/jquery-keyboard.mk b/package/jquery-keyboard/jquery-keyboard.mk index 0d9b69b590..c429f16e25 100644 --- a/package/jquery-keyboard/jquery-keyboard.mk +++ b/package/jquery-keyboard/jquery-keyboard.mk @@ -22,4 +22,4 @@ define JQUERY_KEYBOARD_INSTALL_TARGET_CMDS $(TARGET_DIR)/var/www/layouts endef -$(eval $(call generic-package)) +$(eval $(generic-package)) diff --git a/package/wireshark/wireshark.mk b/package/wireshark/wireshark.mk index a61e01725c..a105e5284b 100644 --- a/package/wireshark/wireshark.mk +++ b/package/wireshark/wireshark.mk @@ -20,4 +20,4 @@ WIRESHARK_CONF_OPT = --disable-wireshark --without-krb5 --disable-usr-local \ --enable-static=no --with-gnutls=no --with-libsmi=no \ --includedir=$(STAGING_DIR)/usr/include -$(eval $(call autotools-package)) +$(eval $(autotools-package))