summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2006-10-06 18:49:36 -0700
committerTim Rice <tim@multitalents.net>2006-10-06 18:49:36 -0700
commit77674b1efa744ad03eca3ca1cfcff3abecd55134 (patch)
tree1018d3e2c8f2bf11fe4de8e244fd8e95e890ba42
parentadc947d5a532880e7a2ffd1828789ada8fea6931 (diff)
- (tim) [buildpkg.sh.in] Some systems have really limited nawk (OpenServer).
Allow setting alternate awk in openssh-config.local.
-rw-r--r--ChangeLog4
-rw-r--r--buildpkg.sh.in3
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 08f48d61c..b5f5fcc47 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,8 @@
4 - (dtucker) [configure.ac] Set put -lselinux into $LIBS while testing for 4 - (dtucker) [configure.ac] Set put -lselinux into $LIBS while testing for
5 SELinux functions so they're detected correctly. Patch from pebenito at 5 SELinux functions so they're detected correctly. Patch from pebenito at
6 gentoo.org. 6 gentoo.org.
7 - (tim) [buildpkg.sh.in] Some systems have really limited nawk (OpenServer).
8 Allow setting alternate awk in openssh-config.local.
7 9
820061003 1020061003
9 - (tim) [configure.ac] Move CHECK_HEADERS test before platform specific 11 - (tim) [configure.ac] Move CHECK_HEADERS test before platform specific
@@ -2522,4 +2524,4 @@
2522 OpenServer 6 and add osr5bigcrypt support so when someone migrates 2524 OpenServer 6 and add osr5bigcrypt support so when someone migrates
2523 passwords between UnixWare and OpenServer they will still work. OK dtucker@ 2525 passwords between UnixWare and OpenServer they will still work. OK dtucker@
2524 2526
2525$Id: ChangeLog,v 1.4568 2006/10/06 23:07:20 dtucker Exp $ 2527$Id: ChangeLog,v 1.4569 2006/10/07 01:49:36 tim Exp $
diff --git a/buildpkg.sh.in b/buildpkg.sh.in
index 9e4ff4239..17349f7fc 100644
--- a/buildpkg.sh.in
+++ b/buildpkg.sh.in
@@ -24,6 +24,7 @@ PKGNAME=OpenSSH
24# revisions within the same version (REV=a) 24# revisions within the same version (REV=a)
25#REV= 25#REV=
26SYSVINIT_NAME=opensshd 26SYSVINIT_NAME=opensshd
27AWK=${AWK:="nawk"}
27MAKE=${MAKE:="make"} 28MAKE=${MAKE:="make"}
28SSHDUID=67 # Default privsep uid 29SSHDUID=67 # Default privsep uid
29SSHDGID=67 # Default privsep gid 30SSHDGID=67 # Default privsep gid
@@ -645,7 +646,7 @@ cat >mk-proto.awk << _EOF
645_EOF 646_EOF
646 647
647find . | egrep -v "prototype|pkginfo|mk-proto.awk" | sort | \ 648find . | egrep -v "prototype|pkginfo|mk-proto.awk" | sort | \
648 pkgproto $PROTO_ARGS | nawk -f mk-proto.awk > prototype 649 pkgproto $PROTO_ARGS | ${AWK} -f mk-proto.awk > prototype
649 650
650# /usr/local is a symlink on some systems 651# /usr/local is a symlink on some systems
651[ "${USR_LOCAL_IS_SYMLINK}" = yes ] && { 652[ "${USR_LOCAL_IS_SYMLINK}" = yes ] && {