diff options
author | Darren Tucker <dtucker@zip.com.au> | 2006-09-10 05:24:18 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2006-09-10 05:24:18 +0200 |
commit | f376669328e6df2dc78936786787150d98a1df80 (patch) | |
tree | 272a8041a86fce9142e900f977b2bc9a6d3f40f5 /contrib/aix | |
parent | - (dtucker) [buildpkg.sh.in] Always create privsep user. ok djm@ (diff) | |
download | openssh-f376669328e6df2dc78936786787150d98a1df80.tar.xz openssh-f376669328e6df2dc78936786787150d98a1df80.zip |
- (dtucker) [contrib/aix/buildbff.sh] Ensure that perl is available.
Diffstat (limited to 'contrib/aix')
-rwxr-xr-x | contrib/aix/buildbff.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/aix/buildbff.sh b/contrib/aix/buildbff.sh index 03f0d6048..97a7cbbba 100755 --- a/contrib/aix/buildbff.sh +++ b/contrib/aix/buildbff.sh @@ -1,7 +1,7 @@ #!/bin/sh # # buildbff.sh: Create AIX SMIT-installable OpenSSH packages -# $Id: buildbff.sh,v 1.9 2006/09/09 10:34:15 dtucker Exp $ +# $Id: buildbff.sh,v 1.10 2006/09/10 03:24:19 dtucker Exp $ # # Author: Darren Tucker (dtucker at zip dot com dot au) # This file is placed in the public domain and comes with absolutely @@ -23,6 +23,8 @@ umask 022 startdir=`pwd` +perl -v >/dev/null || (echo perl required; exit 1) + # Path to inventory.sh: same place as buildbff.sh if echo $0 | egrep '^/' then |