193ba4ccca
PR: misc/7759 Submitted by: Carl Mascott <cmascott@world.std.com> Reviewed by: jkh
14 lines
255 B
Bash
Executable File
14 lines
255 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
if [ "`id -u`" != "0" ]; then
|
|
echo "Sorry, this must be done as root."
|
|
exit 1
|
|
fi
|
|
cat proflibs.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
|
|
cd ${DESTDIR:-/}usr/lib
|
|
if [ -f libdescrypt_p.a ]
|
|
then
|
|
ln -f -s libdescrypt_p.a libcrypt_p.a
|
|
fi
|
|
exit 0
|