diff options
author | Phil Sutter <phil@nwl.cc> | 2010-06-20 14:13:50 +0200 |
---|---|---|
committer | Phil Sutter <phil@nwl.cc> | 2010-06-20 16:20:40 +0200 |
commit | 6753dd303c33fcd2e7ecf35e5d1c785c4726105b (patch) | |
tree | 4d5c3de68772c52a5d82564ad28687352b62dd46 /package/libXaw | |
parent | 1d99bed8cd4a9c1fa942bbb094259ffd0ea6985b (diff) |
libXaw: fix PKG_template invocation
For the sake of simplicity, we should stick to ${PKG_NAME} here, not the
hard-coded lower-case variant of it. This way one has to stick to the
original casing of the package name when specifying as dependency, but
that's in fact more straight forward than always having to lookup the
PKG_template invocation in question.
Diffstat (limited to 'package/libXaw')
-rw-r--r-- | package/libXaw/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libXaw/Makefile b/package/libXaw/Makefile index 9b6481da8..16930e11d 100644 --- a/package/libXaw/Makefile +++ b/package/libXaw/Makefile @@ -14,7 +14,7 @@ PKG_SITES:= ${MASTER_SITE_XORG} include $(TOPDIR)/mk/package.mk -$(eval $(call PKG_template,LIBXAW,libxaw,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) +$(eval $(call PKG_template,LIBXAW,${PKG_NAME},$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) CONFIGURE_ARGS+= --disable-docs |