diff options
| author | Thomas De Schampheleire <patrickdepinguin@gmail.com> | 2014-02-05 10:44:03 +0100 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2014-02-05 12:10:35 +0100 |
| commit | 26aef889f1df32d5a15cd70f6b1e316ebb830cb7 (patch) | |
| tree | 9baed5f64e8c19f89bd2f723353f2fa5b54b9486 /package/pkg-luarocks.mk | |
| parent | ac57c640c6e2d605f25d150bdede17f6f94edd76 (diff) | |
| download | buildroot-26aef889f1df32d5a15cd70f6b1e316ebb830cb7.tar.gz buildroot-26aef889f1df32d5a15cd70f6b1e316ebb830cb7.zip | |
infra: remove unused 4th parameter to package infrastructures (pkgparentdir)
The fourth parameter to inner-generic-package is no longer used. Removing
this parameters requires renaming all usages of $(5) to $(4), and updating
the calls to inner-generic-package (and equivalent for the other package
infrastructures).
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/pkg-luarocks.mk')
| -rw-r--r-- | package/pkg-luarocks.mk | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/package/pkg-luarocks.mk b/package/pkg-luarocks.mk index fdd26c750c..bdda022f07 100644 --- a/package/pkg-luarocks.mk +++ b/package/pkg-luarocks.mk @@ -28,8 +28,7 @@ # for host packages # argument 3 is the uppercase package name, without the HOST_ prefix # for host packages -# argument 4 is the package directory prefix -# argument 5 is the type (target or host) +# argument 4 is the type (target or host) ################################################################################ define inner-luarocks-package @@ -70,7 +69,7 @@ endif # Call the generic package infrastructure to generate the necessary # make targets -$(call inner-generic-package,$(1),$(2),$(3),$(4),$(5)) +$(call inner-generic-package,$(1),$(2),$(3),$(4)) endef @@ -78,5 +77,5 @@ endef # luarocks-package -- the target generator macro for LuaRocks packages ################################################################################ -luarocks-package = $(call inner-luarocks-package,$(pkgname),$(call UPPERCASE,$(pkgname)),$(call UPPERCASE,$(pkgname)),$(pkgparentdir),target) +luarocks-package = $(call inner-luarocks-package,$(pkgname),$(call UPPERCASE,$(pkgname)),$(call UPPERCASE,$(pkgname)),target) # host-luarocks-package not supported |

