diff options
author | 2013-09-11 13:05:01 +0200 | |
---|---|---|
committer | 2013-09-11 13:05:01 +0200 | |
commit | be7f613b90b01cdad0e1348ead3d70f72cbcbab2 (patch) | |
tree | cae07b5f44bd1bbc165012e4bdf3ab58003c7218 /package | |
parent | c403fedbc72438866e8acacf6c1b1d7204a40e1a (diff) | |
download | buildroot-be7f613b90b01cdad0e1348ead3d70f72cbcbab2.tar.gz buildroot-be7f613b90b01cdad0e1348ead3d70f72cbcbab2.tar.bz2 |
package: drop unneeded 'call' from {generic,autotools}-package invocation
Reported-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r-- | package/dhcpcd/dhcpcd.mk | 2 | ||||
-rw-r--r-- | package/jquery-keyboard/jquery-keyboard.mk | 2 | ||||
-rw-r--r-- | package/wireshark/wireshark.mk | 2 |
3 files changed, 3 insertions, 3 deletions
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)) |