]> andersk Git - openssh.git/commitdiff
- (tim) [buildpkg.sh.in] Some systems have really limited nawk (OpenServer).
authortim <tim>
Sat, 7 Oct 2006 01:49:36 +0000 (01:49 +0000)
committertim <tim>
Sat, 7 Oct 2006 01:49:36 +0000 (01:49 +0000)
   Allow setting alternate awk in openssh-config.local.

ChangeLog
buildpkg.sh.in

index bf9e3a6f0ec63edb86f6ade76eddc670e88519d8..b9300034a9f24aa04187a2bd3220bebeef08cd02 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,8 @@
  - (dtucker) [configure.ac] Set put -lselinux into $LIBS while testing for
    SELinux functions so they're detected correctly.  Patch from pebenito at
    gentoo.org.
+ - (tim) [buildpkg.sh.in] Some systems have really limited nawk (OpenServer).
+   Allow setting alternate awk in openssh-config.local.
 
 20061003
  - (tim) [configure.ac] Move CHECK_HEADERS test before platform specific
index 9e4ff42390c6effc49ee2435bcdfee56b959ad15..17349f7fcf3e6981e2d2dbd7f1d796ac6c4395a2 100644 (file)
@@ -24,6 +24,7 @@ PKGNAME=OpenSSH
 # revisions within the same version (REV=a)
 #REV=
 SYSVINIT_NAME=opensshd
+AWK=${AWK:="nawk"}
 MAKE=${MAKE:="make"}
 SSHDUID=67     # Default privsep uid
 SSHDGID=67     # Default privsep gid
@@ -645,7 +646,7 @@ cat >mk-proto.awk << _EOF
 _EOF
 
 find . | egrep -v "prototype|pkginfo|mk-proto.awk" | sort | \
-       pkgproto $PROTO_ARGS | nawk -f mk-proto.awk > prototype
+       pkgproto $PROTO_ARGS | ${AWK} -f mk-proto.awk > prototype
 
 # /usr/local is a symlink on some systems
 [ "${USR_LOCAL_IS_SYMLINK}" = yes ]  &&  {
This page took 0.078006 seconds and 5 git commands to generate.