* fix distro (inspired by mercurial .bep)

thx for the hints everybody
This commit is contained in:
Michael Weirauch
2010-06-07 16:50:10 +00:00
parent 135b688d6e
commit 90ddae020b
2 changed files with 10 additions and 2 deletions

View File

@@ -14,5 +14,9 @@ BUILD {
INSTALL {
cd scons-1.0.1
python2.5 setup.py install --symlink-scons --standard-lib
if [ -n ${DESTDIR} ];then
python2.5 setup.py install --root="${DESTDIR}" --prefix="/boot/common" --symlink-scons --standard-lib
else
python2.5 setup.py install --prefix="/boot/common" --symlink-scons --standard-lib
fi
}

View File

@@ -14,5 +14,9 @@ BUILD {
INSTALL {
cd scons-1.0.1
python setup.py install --symlink-scons --standard-lib
if [ -n ${DESTDIR} ];then
python setup.py install --root="${DESTDIR}" --prefix="/boot/common" --symlink-scons --standard-lib
else
python setup.py install --prefix="/boot/common" --symlink-scons --standard-lib
fi
}