diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-05-19 21:14:18 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-05-19 21:14:18 +0000 |
commit | 48e69e6e71ed8e65a119ced3bf7b9f496dcc8385 (patch) | |
tree | b8351969b1dadbaabafe43482b81fc9ec7aaabaa /openwrt/package/openldap/Makefile | |
parent | 5bba199dd0e5dcb544e30137be239206278a2024 (diff) | |
download | mtk-20170518-48e69e6e71ed8e65a119ced3bf7b9f496dcc8385.zip mtk-20170518-48e69e6e71ed8e65a119ced3bf7b9f496dcc8385.tar.gz mtk-20170518-48e69e6e71ed8e65a119ced3bf7b9f496dcc8385.tar.bz2 |
Tweak package build
SVN-Revision: 968
Diffstat (limited to 'openwrt/package/openldap/Makefile')
-rw-r--r-- | openwrt/package/openldap/Makefile | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/openwrt/package/openldap/Makefile b/openwrt/package/openldap/Makefile index 5ca37c9..f89c1e8 100644 --- a/openwrt/package/openldap/Makefile +++ b/openwrt/package/openldap/Makefile @@ -7,9 +7,7 @@ PKG_VERSION:=2.2.26 PKG_RELEASE:=1 PKG_MD5SUM:=afc8700b5738da863b30208e1d3e9de8 -PKG_SOURCE_URL:= \ - ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/ \ - http://nthill.free.fr/openwrt/sources/$(PKG_NAME)/ +PKG_SOURCE_URL:=ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/ PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz PKG_CAT:=zcat @@ -36,10 +34,12 @@ include $(TOPDIR)/package/rules.mk $(eval $(call PKG_template,LIBOPENLDAP,libopenldap,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(eval $(call PKG_template,OPENLDAP_UTILS,openldap-utils,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) -$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared - touch $(PKG_BUILD_DIR)/.configured +$(PKG_BUILD_DIR)/.configured: + touch $@ -$(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured +$(PKG_BUILD_DIR)/.built: + rm -rf $(PKG_INSTALL_DIR) + mkdir -p $(PKG_INSTALL_DIR) (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \ ./configure \ --target=$(GNU_HOST_NAME) \ @@ -95,12 +95,10 @@ $(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured $(DISABLE_NLS) \ $(PKG_CONFIGURE_OPTIONS) \ ) - $(MAKE) -C $(PKG_BUILD_DIR) - mkdir -p $(PKG_INSTALL_DIR) $(MAKE) -C $(PKG_BUILD_DIR) \ DESTDIR="$(PKG_INSTALL_DIR)" \ - install - touch $(PKG_BUILD_DIR)/.built + all install + touch $@ $(IPKG_LIBOPENLDAP): |