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 | 1c478a693df182a4104311629c4a90159fc31c1f (patch) | |
tree | da913501a3a383315403a2d10ab5f33bd357fdf1 /package/nmap | |
parent | c443f0ee7a69676ad3c0328ab2c0c376ddc1e380 (diff) | |
download | upstream-1c478a693df182a4104311629c4a90159fc31c1f.tar.gz upstream-1c478a693df182a4104311629c4a90159fc31c1f.tar.bz2 upstream-1c478a693df182a4104311629c4a90159fc31c1f.zip |
Tweak package build
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@968 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/nmap')
-rw-r--r-- | package/nmap/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/package/nmap/Makefile b/package/nmap/Makefile index 69cc9259bf..6e685b4ea6 100644 --- a/package/nmap/Makefile +++ b/package/nmap/Makefile @@ -51,17 +51,16 @@ $(PKG_BUILD_DIR)/.configured: --with-libpcap="$(STAGING_DIR)/usr" \ --with-libpcre="$(STAGING_DIR)/usr" \ ); - touch $(PKG_BUILD_DIR)/.configured + touch $@ $(PKG_BUILD_DIR)/.built: - $(MAKE) -C $(PKG_BUILD_DIR) \ - $(TARGET_CONFIGURE_OPTS) \ - CCOPT="-fno-builtin -nostdinc++ -nodefaultlibs $(TARGET_CFLAGS)" mkdir -p $(PKG_INSTALL_DIR) $(MAKE) -C $(PKG_BUILD_DIR) \ + $(TARGET_CONFIGURE_OPTS) \ + CCOPT="-fno-builtin -nostdinc++ -nodefaultlibs $(TARGET_CFLAGS)" \ DESTDIR="$(PKG_INSTALL_DIR)" \ - install - touch $(PKG_BUILD_DIR)/.built + all install + touch $@ $(IPKG_NMAP): install -d -m0755 $(IDIR_NMAP)/usr/share/nmap |