diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-04-04 13:36:23 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-04-04 13:36:23 +0000 |
commit | 183c22a48a0a7c97d576043f6154d6b884794365 (patch) | |
tree | 2a06c5f46d4cdec3abc6048ff95d4e019cab39f9 /openwrt/package | |
parent | 5135ae2b7524dd340fd2fd32375e3bebb25892c4 (diff) | |
download | mtk-20170518-183c22a48a0a7c97d576043f6154d6b884794365.zip mtk-20170518-183c22a48a0a7c97d576043f6154d6b884794365.tar.gz mtk-20170518-183c22a48a0a7c97d576043f6154d6b884794365.tar.bz2 |
fix re-installing of nocatsplash (glib stuff again)
SVN-Revision: 556
Diffstat (limited to 'openwrt/package')
-rw-r--r-- | openwrt/package/nocatsplash/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/openwrt/package/nocatsplash/Makefile b/openwrt/package/nocatsplash/Makefile index af79e67..bb9cb4a 100644 --- a/openwrt/package/nocatsplash/Makefile +++ b/openwrt/package/nocatsplash/Makefile @@ -56,7 +56,13 @@ $(PKG_BUILD_DIR)/src/splashd: $(PKG_BUILD_DIR)/.configured $(PKG_IPK): $(PKG_BUILD_DIR)/src/splashd $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH) - $(MAKE) -C $(PKG_BUILD_DIR) DESTDIR=$(PKG_IPK_DIR) install + $(MAKE) -C $(PKG_BUILD_DIR) \ + CC=$(TARGET_CC) \ + GLIB_CFLAGS="$(GLIB_CFLAGS)" \ + AM_CFLAGS="$(TARGET_CFLAGS) $(GLIB_CFLAGS)" \ + GLIB_LIBS="-L$(STAGING_DIR)/usr/lib -lglib" \ + LIBS="-L$(STAGING_DIR)/usr/lib -lglib" \ + DESTDIR=$(PKG_IPK_DIR) install $(STRIP) $(PKG_IPK_DIR)/usr/sbin/splashd mkdir -p $(PACKAGE_DIR) $(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR) |