mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-29 21:39:24 +00:00
53f454c3aa
PR: 16437 Submitted by: maintainer
55 lines
787 B
Plaintext
55 lines
787 B
Plaintext
--- inst.sh.orig Thu Jan 27 02:36:07 2000
|
|
+++ inst.sh Thu Jan 27 02:29:51 2000
|
|
@@ -1,8 +1,8 @@
|
|
|
|
# (Large) prefix inserted above by Make
|
|
|
|
-# BSD systems keep chown in /etc
|
|
-PATH="$PATH:/etc"
|
|
+# BSD systems keep chown in /usr/sbin
|
|
+PATH="$PATH:/usr/sbin"
|
|
|
|
case "$1" in
|
|
mkdir)
|
|
@@ -55,7 +55,7 @@
|
|
;;
|
|
esac
|
|
|
|
-set -u
|
|
+#set -u
|
|
|
|
(
|
|
if $NNTP
|
|
@@ -89,8 +89,8 @@
|
|
if [ -s ErrorCheck ]
|
|
then
|
|
cat ErrorCheck
|
|
- echo "Hit return to continue"
|
|
- read X
|
|
+# echo "Hit return to continue"
|
|
+# read X
|
|
fi
|
|
rm -f ErrorCheck
|
|
|
|
@@ -188,7 +188,7 @@
|
|
OPT=master
|
|
;;
|
|
n)
|
|
- OPT="bin aux help online man"
|
|
+ OPT="bin aux help online man inews"
|
|
;;
|
|
2|c)
|
|
OPT=bin
|
|
@@ -357,6 +357,11 @@
|
|
fi
|
|
done
|
|
;;
|
|
+
|
|
+inews)
|
|
+ cd inews/ && make install || exit 1
|
|
+ ;;
|
|
+
|
|
|
|
online)
|
|
./inst mkdir $HELP 755 || exit 1
|