Request 215 was acted upon.
_________________________________________________________________________
URL: https://rt.openpkg.org/id/215
Ticket: [OpenPKG #215]
Subject: openpkg.src.sh should check for dependencies or at least fail if
dependencies are not met.
Requestors: [EMAIL PROTECTED]
Queue: openpkg
Owner: Nobody
Status: new
Transaction: Ticket created by [EMAIL PROTECTED]
Time: Sun Jul 27 16:25:21 2003
_________________________________________________________________________
From: Bernhard Erdmann <[EMAIL PROTECTED]>
To: Kolab Server and KDE Client development issues <[EMAIL PROTECTED]>
Hi,
openpkg-20030606-20030606.src.sh tries to execute uudecode without
testing its existance or checking its return code:
# extract the tarball
echo "$me: extracting to $dir..."
uudecode $me
rm -rf $dir >/dev/null 2>&1
mkdir $dir || exit 1
As uudecode (part of sharutils) is not installed on each and every
system, this line should read at least:
uudecode $me || exit 1