From 476a5ccbb53634345d46d7b6ba0112aa8347e005 Mon Sep 17 00:00:00 2001 From: Scott McCreary Date: Mon, 22 Mar 2010 00:30:50 +0000 Subject: [PATCH] Fixed destdir issue with openssh .bep file, thanks to auggiedoggie. --- net-misc/openssh/openssh-5.4p1.bep | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/net-misc/openssh/openssh-5.4p1.bep b/net-misc/openssh/openssh-5.4p1.bep index b941cc0bc..cba95f5a8 100644 --- a/net-misc/openssh/openssh-5.4p1.bep +++ b/net-misc/openssh/openssh-5.4p1.bep @@ -33,5 +33,9 @@ BUILD { INSTALL { cd openssh-5.4p1 + if [ -n ${DESTDIR} ];then + make install DESTDIR="${DESTDIR}" + else make install + fi }