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/glib/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/glib/Makefile')
-rw-r--r-- | openwrt/package/glib/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/openwrt/package/glib/Makefile b/openwrt/package/glib/Makefile index 5b35fa1..594d364 100644 --- a/openwrt/package/glib/Makefile +++ b/openwrt/package/glib/Makefile @@ -66,15 +66,15 @@ $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared --enable-shared=yes \ --enable-static=yes \ ); - touch $(PKG_BUILD_DIR)/.configured + touch $@ $(PKG_BUILD_DIR)/.built: $(PKG_BUILD_DIR)/.configured - $(MAKE) -C $(PKG_BUILD_DIR) \ - $(TARGET_CONFIGURE_OPTS) + rm -rf $(PKG_INSTALL_DIR) + mkdir -p $(PKG_INSTALL_DIR) $(MAKE) -C $(PKG_BUILD_DIR) \ DESTDIR="$(PKG_INSTALL_DIR)" \ install - touch $(PKG_BUILD_DIR)/.built + touch $@ $(IPKG_GLIB1): install -m0755 -d $(IDIR_GLIB1)/usr/lib @@ -107,4 +107,4 @@ uninstall-dev: rm -rf $(STAGING_DIR)/usr/lib/pkgconfig/g{lib,module,thread}.pc compile: install-dev -clean: uninstall-dev
\ No newline at end of file +clean: uninstall-dev |