Quoted the ${DESTDIR} checks in the bzr bep files.

This commit is contained in:
Scott McCreary
2010-09-15 18:45:52 +00:00
parent 486ca450c5
commit 6ef71d17ea
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ INSTALL {
## Now put the man file(s) in the correct directory
mkdir -p ${DESTDIR}$(finddir B_COMMON_DOCUMENTATION_DIRECTORY)/man/man1
mv ${DESTDIR}/$(finddir B_COMMON_DIRECTORY)/man/man1/bzr* ${DESTDIR}/$(finddir B_COMMON_DOCUMENTATION_DIRECTORY)/man/man1/
if [ -e ${DESTDIR} ]; then
if [ -e "${DESTDIR}" ]; then
rm -rf ${DESTDIR}/$(finddir B_COMMON_DIRECTORY)/man
fi
}

View File

@@ -25,7 +25,7 @@ INSTALL {
## Now put the man file(s) in the correct directory
mkdir -p ${DESTDIR}$(finddir B_COMMON_DOCUMENTATION_DIRECTORY)/man/man1
mv ${DESTDIR}/$(finddir B_COMMON_DIRECTORY)/man/man1/bzr* ${DESTDIR}/$(finddir B_COMMON_DOCUMENTATION_DIRECTORY)/man/man1/
if [ -e ${DESTDIR} ]; then
if [ -e "${DESTDIR}" ]; then
rm -rf ${DESTDIR}/$(finddir B_COMMON_DIRECTORY)/man
fi
}