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 | |
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')
-rw-r--r-- | package/libXaw/Makefile | 2 | ||||
-rw-r--r-- | package/xorg-server/Makefile | 2 |
2 files changed, 2 insertions, 2 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 diff --git a/package/xorg-server/Makefile b/package/xorg-server/Makefile index 5ec3e3aff..17ad6e8b9 100644 --- a/package/xorg-server/Makefile +++ b/package/xorg-server/Makefile @@ -10,7 +10,7 @@ PKG_MD5SUM:= ba0360b4ec1f6e541b264e45906bf5f2 PKG_DESCR:= Xorg server PKG_SECTION:= x11 PKG_DEPENDS:= libopenssl libxfont pixman libpciaccess libxkbfile \ - libfontenc xkeyboard-config xkbcomp libxau libxaw \ + libfontenc xkeyboard-config xkbcomp libxau libXaw \ libxmu libxpm libxrender libxt libxxf86dga libxext \ libxdmcp libxv libsm libice libx11 PKG_BUILDDEP+= libX11 randrproto renderproto fixesproto damageproto \ |