From: Rosen Penev Date: Sun, 29 Nov 2020 06:13:11 +0000 (-0800) Subject: google-authenticator-libpam: fix InstallDev paths X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=002ad117ae0ace078e3b685bb9cc2cb998e3dd76;p=openwrt-packages.git google-authenticator-libpam: fix InstallDev paths libpam will soon install to /usr/lib instead of /lib. Adjust accordingly. Signed-off-by: Rosen Penev --- diff --git a/libs/google-authenticator-libpam/Makefile b/libs/google-authenticator-libpam/Makefile index f7e3c0fe6..70acb1ef9 100644 --- a/libs/google-authenticator-libpam/Makefile +++ b/libs/google-authenticator-libpam/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=google-authenticator-libpam PKG_VERSION:=1.09 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/google/google-authenticator-libpam/tar.gz/$(PKG_VERSION)? @@ -36,8 +36,8 @@ define Package/google-authenticator-libpam/description endef define Build/InstallDev - $(INSTALL_DIR) $(1)/lib/security - $(CP) $(PKG_INSTALL_DIR)/usr/lib/security/* $(1)/lib/security/ + $(INSTALL_DIR) $(1)/usr/lib/security + $(CP) $(PKG_INSTALL_DIR)/usr/lib/security/* $(1)/usr/lib/security/ endef define Package/google-authenticator-libpam/install