summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-07-18 01:04:50 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-07-18 01:04:50 +0000
commit2faabf3d798a8bab6d6b6a13c40e4c0d51bbf826 (patch)
tree361c494acac60d6bdebaaf09da449354664eee02
parentffaf4453712ac7b47b0157ba2c7201e77a54c369 (diff)
- (bal) aixbff package updated by dtucker@zip.com.au
-rw-r--r--ChangeLog5
-rwxr-xr-xcontrib/aix/buildbff.sh29
2 files changed, 17 insertions, 17 deletions
diff --git a/ChangeLog b/ChangeLog
index 039f1a8f6..7984d15b0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
120020717
2 - (bal) aixbff package updated by dtucker@zip.com.au
3
120020716 420020716
2 - (tim) [contrib/solaris/opensshd.in] Only kill sshd if .pid file found 5 - (tim) [contrib/solaris/opensshd.in] Only kill sshd if .pid file found
3 6
@@ -1377,4 +1380,4 @@
1377 - (stevesk) entropy.c: typo in debug message 1380 - (stevesk) entropy.c: typo in debug message
1378 - (djm) ssh-keygen -i needs seeded RNG; report from markus@ 1381 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
1379 1382
1380$Id: ChangeLog,v 1.2371 2002/07/16 21:24:38 tim Exp $ 1383$Id: ChangeLog,v 1.2372 2002/07/18 01:04:50 mouring Exp $
diff --git a/contrib/aix/buildbff.sh b/contrib/aix/buildbff.sh
index d531e53f4..5c09c6b75 100755
--- a/contrib/aix/buildbff.sh
+++ b/contrib/aix/buildbff.sh
@@ -18,6 +18,16 @@ X11_FORWARDING=no
18 18
19umask 022 19umask 022
20 20
21startdir=`pwd`
22
23# Path to inventory.sh: same place as buildbff.sh
24if echo $0 | egrep '^/'
25then
26 inventory=`dirname $0`/inventory.sh # absolute path
27else
28 inventory=`pwd`/`dirname $0`/inventory.sh # relative path
29fi
30
21# 31#
22# We still support running from contrib/aix, but this is depreciated 32# We still support running from contrib/aix, but this is depreciated
23# 33#
@@ -45,14 +55,6 @@ objdir=`pwd`
45PKGNAME=openssh 55PKGNAME=openssh
46PKGDIR=package 56PKGDIR=package
47 57
48# Path to inventory.sh: same place as buildbff.sh
49if echo $0 | egrep '^/'
50then
51 inventory=`dirname $0`/inventory.sh # absolute path
52else
53 inventory=`pwd`/`dirname $0`/inventory.sh # relative path
54fi
55
56# 58#
57# Collect local configuration settings to override defaults 59# Collect local configuration settings to override defaults
58# 60#
@@ -328,15 +330,10 @@ rm -f $PKGNAME-$VERSION.bff
328) | backup -i -q -f ../$PKGNAME-$VERSION.bff $filelist 330) | backup -i -q -f ../$PKGNAME-$VERSION.bff $filelist
329 331
330# 332#
331# Move package into final location 333# Move package into final location and clean up
332# 334#
333if [ "$contribaix" = "1" ] 335mv ../$PKGNAME-$VERSION.bff $startdir
334then 336cd $startdir
335 mv ../$PKGNAME-$VERSION.bff $objdir/contrib/aix
336else
337 mv ../$PKGNAME-$VERSION.bff $objdir
338fi
339
340rm -rf $objdir/$PKGDIR 337rm -rf $objdir/$PKGDIR
341 338
342echo $0: done. 339echo $0: done.