mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-31 01:35:11 +02:00
- (tim) [buildpkg.sh.in] Some systems have really limited nawk (OpenServer).
Allow setting alternate awk in openssh-config.local.
This commit is contained in:
parent
adc947d5a5
commit
77674b1efa
@ -4,6 +4,8 @@
|
|||||||
- (dtucker) [configure.ac] Set put -lselinux into $LIBS while testing for
|
- (dtucker) [configure.ac] Set put -lselinux into $LIBS while testing for
|
||||||
SELinux functions so they're detected correctly. Patch from pebenito at
|
SELinux functions so they're detected correctly. Patch from pebenito at
|
||||||
gentoo.org.
|
gentoo.org.
|
||||||
|
- (tim) [buildpkg.sh.in] Some systems have really limited nawk (OpenServer).
|
||||||
|
Allow setting alternate awk in openssh-config.local.
|
||||||
|
|
||||||
20061003
|
20061003
|
||||||
- (tim) [configure.ac] Move CHECK_HEADERS test before platform specific
|
- (tim) [configure.ac] Move CHECK_HEADERS test before platform specific
|
||||||
@ -2522,4 +2524,4 @@
|
|||||||
OpenServer 6 and add osr5bigcrypt support so when someone migrates
|
OpenServer 6 and add osr5bigcrypt support so when someone migrates
|
||||||
passwords between UnixWare and OpenServer they will still work. OK dtucker@
|
passwords between UnixWare and OpenServer they will still work. OK dtucker@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.4568 2006/10/06 23:07:20 dtucker Exp $
|
$Id: ChangeLog,v 1.4569 2006/10/07 01:49:36 tim Exp $
|
||||||
|
@ -24,6 +24,7 @@ PKGNAME=OpenSSH
|
|||||||
# revisions within the same version (REV=a)
|
# revisions within the same version (REV=a)
|
||||||
#REV=
|
#REV=
|
||||||
SYSVINIT_NAME=opensshd
|
SYSVINIT_NAME=opensshd
|
||||||
|
AWK=${AWK:="nawk"}
|
||||||
MAKE=${MAKE:="make"}
|
MAKE=${MAKE:="make"}
|
||||||
SSHDUID=67 # Default privsep uid
|
SSHDUID=67 # Default privsep uid
|
||||||
SSHDGID=67 # Default privsep gid
|
SSHDGID=67 # Default privsep gid
|
||||||
@ -645,7 +646,7 @@ cat >mk-proto.awk << _EOF
|
|||||||
_EOF
|
_EOF
|
||||||
|
|
||||||
find . | egrep -v "prototype|pkginfo|mk-proto.awk" | sort | \
|
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 a symlink on some systems
|
||||||
[ "${USR_LOCAL_IS_SYMLINK}" = yes ] && {
|
[ "${USR_LOCAL_IS_SYMLINK}" = yes ] && {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user