1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

o Fixed the install-zenmap make target for Solaris portability.

Solaris /bin/sh does not have test(1) -e. [Daniel Roethlisberger]
This commit is contained in:
david
2009-03-04 18:33:15 +00:00
parent 5ed0e17ea0
commit 523452a0d0
2 changed files with 4 additions and 1 deletions

View File

@@ -1,5 +1,8 @@
# Nmap Changelog ($Id$); -*-text-*-
o Fixed the install-zenmap make target for Solaris portability.
Solaris /bin/sh does not have test(1) -e. [Daniel Roethlisberger]
o Version detection used to omit the "ssl/" service name prefix if an
SSL-tunneled port didn't respond to any version probes. Now it keeps
"ssl/" as an indication that SSL was discovered, even if the service

View File

@@ -227,7 +227,7 @@ install-zenmap: $(ZENMAPDIR)/setup.py
$(INSTALL) -c -m 644 docs/zenmap.1 $(DESTDIR)$(mandir)/man1/
# Create a symlink from nmapfe to zenmap if nmapfe doesn't exist or is
# already a link.
if [ ! -e $(DESTDIR)$(bindir)/nmapfe -o -L $(DESTDIR)$(bindir)/nmapfe ]; then \
if [ ! -f $(DESTDIR)$(bindir)/nmapfe -o -L $(DESTDIR)$(bindir)/nmapfe ]; then \
ln -sf zenmap $(DESTDIR)$(bindir)/nmapfe; \
fi
# Create a symlink from xnmap to zenmap unconditionally.