Browse Source

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.
Phil Sutter 14 years ago
parent
commit
6753dd303c
2 changed files with 2 additions and 2 deletions
  1. 1 1
      package/libXaw/Makefile
  2. 1 1
      package/xorg-server/Makefile

+ 1 - 1
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
 

+ 1 - 1
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 \