mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
c3ac7b0f5c
Use sbin instead of bin (per original source code)
38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
--- Makefile.in.orig Mon Sep 3 15:01:12 2001
|
|
+++ Makefile.in Mon Apr 15 16:54:29 2002
|
|
@@ -27,9 +27,9 @@
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
# Pathname of directory to install the binary
|
|
-BINDEST = @sbindir@
|
|
+BINDIR = @sbindir@
|
|
# Pathname of directory to install the man page
|
|
-MANDEST = @mandir@
|
|
+MANDIR = @mandir@
|
|
|
|
# VPATH
|
|
srcdir = @srcdir@
|
|
@@ -55,6 +55,8 @@
|
|
LIBS = @LIBS@
|
|
|
|
INSTALL = @INSTALL@
|
|
+INSTALL_PROGRAM=@INSTALL_PROGRAM@
|
|
+INSTALL_DATA=@INSTALL_DATA@
|
|
|
|
# Explicitly define compilation rule since SunOS 4's make doesn't like gcc.
|
|
# Also, gcc does not remove the .o before forking 'as', which can be a
|
|
@@ -97,11 +99,8 @@
|
|
sed -e 's/.*/char version[] = "&";/' $(srcdir)/VERSION > $@
|
|
|
|
install: force
|
|
- $(INSTALL) -m 555 -o bin -g bin tcpslice $(DESTDIR)$(BINDEST)
|
|
-
|
|
-install-man: force
|
|
- $(INSTALL) -m 444 -o bin -g bin $(srcdir)/$(PROG).1 \
|
|
- $(DESTDIR)$(MANDEST)/man1
|
|
+ $(INSTALL_PROGRAM) -m 755 tcpslice $(DESTDIR)$(BINDIR)
|
|
+ $(INSTALL_DATA) tcpslice.1 $(DESTDIR)$(MANDIR)/man1
|
|
|
|
lint: $(GENSRC) force
|
|
lint -hbxn $(SRC) | \
|