From 08711b5eb2618507944debc5b2ac9582ecfcf2dc Mon Sep 17 00:00:00 2001 From: tomsellers Date: Sat, 14 Nov 2009 22:14:01 +0000 Subject: [PATCH] Changing Makefile.in in order to permit the make install process to finish without error. A few extra files are installed so it may need some tweaking, but the change should at least get the process functional. [Tom] --- Makefile.in | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index c1c534fcd..1aae5015a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -280,7 +280,12 @@ install-nse: $(TARGET) $(INSTALL) -d $(DESTDIR)$(nmapdatadir)/nselib $(INSTALL) -c -m 644 $(NSE_LIB_LUA_FILES) $(DESTDIR)$(nmapdatadir)/nselib $(INSTALL) -d $(DESTDIR)$(nmapdatadir)/nselib/data - $(INSTALL) -c -m 644 $(NSE_LIB_DATA_FILES) $(DESTDIR)$(nmapdatadir)/nselib/data + for f in `find nselib/data -name .svn -prune -o -type d -print`; do \ + $(INSTALL) -d $(DESTDIR)$(nmapdatadir)/$$f; \ + done + for f in `find nselib/data -name .svn -prune -o -type f -print`; do \ + $(INSTALL) -c -m 644 $$f $(DESTDIR)$(nmapdatadir)/$$f; \ + done install-ncat: $(NCATDIR)/ncat @cd $(NCATDIR) && $(MAKE) install