- (bal) aixbff package updated by dtucker@zip.com.au
This commit is contained in:
parent
ffaf445371
commit
2faabf3d79
|
@ -1,3 +1,6 @@
|
||||||
|
20020717
|
||||||
|
- (bal) aixbff package updated by dtucker@zip.com.au
|
||||||
|
|
||||||
20020716
|
20020716
|
||||||
- (tim) [contrib/solaris/opensshd.in] Only kill sshd if .pid file found
|
- (tim) [contrib/solaris/opensshd.in] Only kill sshd if .pid file found
|
||||||
|
|
||||||
|
@ -1377,4 +1380,4 @@
|
||||||
- (stevesk) entropy.c: typo in debug message
|
- (stevesk) entropy.c: typo in debug message
|
||||||
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2371 2002/07/16 21:24:38 tim Exp $
|
$Id: ChangeLog,v 1.2372 2002/07/18 01:04:50 mouring Exp $
|
||||||
|
|
|
@ -18,6 +18,16 @@ X11_FORWARDING=no
|
||||||
|
|
||||||
umask 022
|
umask 022
|
||||||
|
|
||||||
|
startdir=`pwd`
|
||||||
|
|
||||||
|
# Path to inventory.sh: same place as buildbff.sh
|
||||||
|
if echo $0 | egrep '^/'
|
||||||
|
then
|
||||||
|
inventory=`dirname $0`/inventory.sh # absolute path
|
||||||
|
else
|
||||||
|
inventory=`pwd`/`dirname $0`/inventory.sh # relative path
|
||||||
|
fi
|
||||||
|
|
||||||
#
|
#
|
||||||
# We still support running from contrib/aix, but this is depreciated
|
# We still support running from contrib/aix, but this is depreciated
|
||||||
#
|
#
|
||||||
|
@ -45,14 +55,6 @@ objdir=`pwd`
|
||||||
PKGNAME=openssh
|
PKGNAME=openssh
|
||||||
PKGDIR=package
|
PKGDIR=package
|
||||||
|
|
||||||
# Path to inventory.sh: same place as buildbff.sh
|
|
||||||
if echo $0 | egrep '^/'
|
|
||||||
then
|
|
||||||
inventory=`dirname $0`/inventory.sh # absolute path
|
|
||||||
else
|
|
||||||
inventory=`pwd`/`dirname $0`/inventory.sh # relative path
|
|
||||||
fi
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Collect local configuration settings to override defaults
|
# Collect local configuration settings to override defaults
|
||||||
#
|
#
|
||||||
|
@ -328,15 +330,10 @@ rm -f $PKGNAME-$VERSION.bff
|
||||||
) | backup -i -q -f ../$PKGNAME-$VERSION.bff $filelist
|
) | backup -i -q -f ../$PKGNAME-$VERSION.bff $filelist
|
||||||
|
|
||||||
#
|
#
|
||||||
# Move package into final location
|
# Move package into final location and clean up
|
||||||
#
|
#
|
||||||
if [ "$contribaix" = "1" ]
|
mv ../$PKGNAME-$VERSION.bff $startdir
|
||||||
then
|
cd $startdir
|
||||||
mv ../$PKGNAME-$VERSION.bff $objdir/contrib/aix
|
|
||||||
else
|
|
||||||
mv ../$PKGNAME-$VERSION.bff $objdir
|
|
||||||
fi
|
|
||||||
|
|
||||||
rm -rf $objdir/$PKGDIR
|
rm -rf $objdir/$PKGDIR
|
||||||
|
|
||||||
echo $0: done.
|
echo $0: done.
|
||||||
|
|
Loading…
Reference in New Issue