mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
e33da5f5f8
Reported by: Dale Mayberry <dale@mars.mat.net> via itojun
25 lines
855 B
Plaintext
25 lines
855 B
Plaintext
--- ./configure.org Tue Nov 26 15:20:17 1996
|
|
+++ ./configure Wed May 28 21:55:16 1997
|
|
@@ -1,1 +1,1 @@
|
|
-#!/bin/sh
|
|
+#!/usr/local/bin/bash
|
|
@@ -239,7 +241,7 @@
|
|
test -d /usr/ucb && PATH=$PATH:/usr/ucb # Sun and others
|
|
test -d /usr/contrib/bin && PATH=$PATH:/usr/contrib/bin # BSDi
|
|
test -d /usr/5bin && PATH=/usr/5bin:$PATH:/usr/etc # Sun and others
|
|
-test -d /usr/local/bin && PATH=/usr/local/bin:$PATH # for GNU stuff
|
|
+test -d /usr/local/bin && PATH=$PATH:/usr/local/bin # for GNU stuff
|
|
PATH=$PATH:$OPATH
|
|
|
|
POSIXLY_CORRECT=1; export POSIXLY_CORRECT # disable GNU extensions
|
|
@@ -3928,7 +3930,8 @@
|
|
printConfig
|
|
checkForExecutable $PATH_SENDMAIL
|
|
checkForExecutable $PATH_GETTY
|
|
- prompt "Are these ok [yes]?"; read ok
|
|
+# prompt "Are these ok [yes]?"; read ok
|
|
+ ok=yes
|
|
test -z "$ok" && ok=yes
|
|
case "$ok" in
|
|
[1-9]|1[0-9]) promptForParameter $ok;;
|