diff options
author | sbyx <steven@midlink.org> | 2014-10-07 21:14:46 +0200 |
---|---|---|
committer | sbyx <steven@midlink.org> | 2014-10-07 21:14:46 +0200 |
commit | baf77297f6be4c0ff71cafafa5c6c61a9ff62fc9 (patch) | |
tree | b44f5a357915cdea48c05f027dba1943bc070e87 /libs | |
parent | 4ab4cf2d4f8dfc149c2afc43492df2426a9ad167 (diff) | |
parent | 259b47ac6f09d9dba0b878fc37ce6590707e2799 (diff) |
Merge pull request #402 from jow-/issue-382
cyrus-sasl: fix typo in install section
Diffstat (limited to 'libs')
-rw-r--r-- | libs/cyrus-sasl/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/cyrus-sasl/Makefile b/libs/cyrus-sasl/Makefile index 258365603..ab36e5812 100644 --- a/libs/cyrus-sasl/Makefile +++ b/libs/cyrus-sasl/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2008 OpenWrt.org +# Copyright (C) 2006-2014 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=cyrus-sasl PKG_VERSION:=2.1.26 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org> @@ -104,9 +104,9 @@ endef define Package/libsasl2/install $(INSTALL_DIR) $(1)/usr/lib/ - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libsasl2.so.* $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/libsasl2.so* $(1)/usr/lib/ $(INSTALL_DIR) $(1)/usr/lib/sasl2 - $(CP) $(PKG_INSTALL_DIR)/usr/lib/sasl2/lib*.so.* $(1)/usr/lib/sasl2/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/sasl2/lib*.so* $(1)/usr/lib/sasl2/ endef $(eval $(call BuildPackage,libsasl2)) |