Add sshd key generator to the install rules for openssh

This commit is contained in:
Chris Roberts
2010-04-14 06:46:41 +00:00
parent 44fa027951
commit 485edf0b8d
2 changed files with 4 additions and 2 deletions

View File

@@ -37,8 +37,10 @@ BUILD {
INSTALL {
cd openssh-5.4p1
if [ -n ${DESTDIR} ];then
make install DESTDIR="${DESTDIR}"
make install DESTDIR="${DESTDIR}"
else
make install
make install
fi
mkdir -p ${DESTDIR}/boot/common/boot/post_install
cp -f $(haikuporter -t)/net-misc/openssh/sshd_keymaker.sh ${DESTDIR}/boot/common/boot/post_install
}