mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
0f61d2fb57
that was in standard use up to UNIX 6th Edition and was supplied as osh with UNIX 7th Edition. Its command language is a sparse subset of those of modern shells and is mostly common to both sh(1) and csh(1). PR: 23943 Submitted by: George Reid <greid@ukug.uk.freebsd.org>
22 lines
508 B
Plaintext
22 lines
508 B
Plaintext
--- makefile.orig Mon Nov 27 19:32:14 2000
|
|
+++ makefile Fri Dec 29 15:31:35 2000
|
|
@@ -7,11 +7,10 @@
|
|
#CPPFLAGS =
|
|
#LDFLAGS =
|
|
#LIBS = -lefence
|
|
-PREFIX = /usr/local
|
|
BINDIR = $(PREFIX)/bin
|
|
MANDIR = $(PREFIX)/man
|
|
MANSECT = $(MANDIR)/man1
|
|
-INSTALL = /usr/ucb/install
|
|
+INSTALL = /usr/bin/install
|
|
|
|
# CONFIGURATION ENDS
|
|
|
|
@@ -41,4 +40,4 @@
|
|
install:
|
|
$(MAKE)
|
|
$(INSTALL) -c -s $(EXE) $(BINDIR)
|
|
- $(INSTALL) -c -m 644 $(MAN) $(MANSECT)
|
|
+ $(INSTALL) -c -m 444 $(MAN) $(MANSECT)
|