diff options
author | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2012-07-03 00:07:32 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2012-07-17 20:23:05 +0200 |
commit | e1502ebc0c92763896c53d405ee9c7c7a1a33e24 (patch) | |
tree | 38066478ac2cc481a3588a15ff5410129fb4c47c /package/udev/udev.mk | |
parent | 46fa5cbfb8f4a94680dc0880db051eb8acee6a17 (diff) | |
download | buildroot-novena-e1502ebc0c92763896c53d405ee9c7c7a1a33e24.tar.gz buildroot-novena-e1502ebc0c92763896c53d405ee9c7c7a1a33e24.zip |
all packages: rename XXXTARGETS to xxx-package
Also remove the redundant $(call ...).
This is a purely mechanical change, performed with
find package linux toolchain boot -name \*.mk | \
xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \
-e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \
-e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/'
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/udev/udev.mk')
-rw-r--r-- | package/udev/udev.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/udev/udev.mk b/package/udev/udev.mk index 726aed6ee..b9fc02f1a 100644 --- a/package/udev/udev.mk +++ b/package/udev/udev.mk @@ -45,4 +45,4 @@ endef UDEV_POST_INSTALL_TARGET_HOOKS += UDEV_INSTALL_INITSCRIPT -$(eval $(call AUTOTARGETS)) +$(eval $(autotools-package)) |