[PC-BSD Commits] r8188 - pcbsd/current/src-sh/pbi-manager
svn at pcbsd.org
svn at pcbsd.org
Fri Dec 10 07:11:38 PST 2010
Author: kris
Date: 2010-12-10 07:11:38 -0800 (Fri, 10 Dec 2010)
New Revision: 8188
Modified:
pcbsd/current/src-sh/pbi-manager/pbi-manager
Log:
Fixed bug with basename usage
Modified: pcbsd/current/src-sh/pbi-manager/pbi-manager
===================================================================
--- pcbsd/current/src-sh/pbi-manager/pbi-manager 2010-12-10 14:45:36 UTC (rev 8187)
+++ pcbsd/current/src-sh/pbi-manager/pbi-manager 2010-12-10 15:11:38 UTC (rev 8188)
@@ -4266,7 +4266,7 @@
for _oPBI in `ls ${_oldPBIdir}/*.pbi 2>/dev/null`
do
# Make sure we don't try to make a patch of identical files
- if [ "`basename $oPBI`" != "`basename $_curPBI`" ] ; then
+ if [ "`basename $_oPBI`" != "`basename $_curPBI`" ] ; then
echo "Building pbp patch of ${_oPBI} -> ${_curPBI}"
make_pbi_patchfile "$_curPBI" "$_oPBI" "$_curPBIdir"
fi
More information about the Commits
mailing list