mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 06:40:48 +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:
parent
5ed0e17ea0
commit
523452a0d0
2 changed files with 4 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue