mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-23 12:10:06 +02:00
Fixed jgmod-0.99.bep to properly use DESTDIR
This commit is contained in:
@@ -19,7 +19,15 @@ BUILD {
|
||||
|
||||
INSTALL {
|
||||
cd jgmod/src
|
||||
make install \
|
||||
CPLIBDEST=/boot/common/lib \
|
||||
CPINCDEST=/boot/common/include
|
||||
if [ -n ${DESTDIR} ];then
|
||||
mkdir -p ${DESTDIR}/boot/common/lib
|
||||
mkdir -p ${DESTDIR}/boot/common/include
|
||||
make install \
|
||||
CPLIBDEST=${DESTDIR}/boot/common/lib \
|
||||
CPINCDEST=${DESTDIR}/boot/common/include
|
||||
else
|
||||
make install \
|
||||
CPLIBDEST=/boot/common/lib \
|
||||
CPINCDEST=/boot/common/include
|
||||
fi
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user