[PC-BSD Commits] r7925 - pcbsd/current/src-sh/pbi-manager
svn at pcbsd.org
svn at pcbsd.org
Wed Oct 27 15:57:34 PDT 2010
Author: kris
Date: 2010-10-27 15:57:34 -0700 (Wed, 27 Oct 2010)
New Revision: 7925
Modified:
pcbsd/current/src-sh/pbi-manager/pbi-manager
Log:
Fixed typo in pathlink creation scripts
Modified: pcbsd/current/src-sh/pbi-manager/pbi-manager
===================================================================
--- pcbsd/current/src-sh/pbi-manager/pbi-manager 2010-10-27 22:08:02 UTC (rev 7924)
+++ pcbsd/current/src-sh/pbi-manager/pbi-manager 2010-10-27 22:57:34 UTC (rev 7925)
@@ -1960,8 +1960,8 @@
echo "#!/bin/sh" >"${dir}/${PBI_UNINS_PATHSCRIPT}"
# Make sure we also set SYS_LOCALBASE in case user runs these stand-alone at some point
- echo "if [ -z \"\$SYS_LOCALBASE\" ] then SYS_LOCALBASE=\"${SYS_LOCALBASE}\" ; fi" >"${dir}/${PBI_INS_PATHSCRIPT}"
- echo "if [ -z \"\$SYS_LOCALBASE\" ] then SYS_LOCALBASE=\"${SYS_LOCALBASE}\" ; fi" >"${dir}/${PBI_UNINS_PATHSCRIPT}"
+ echo "if [ -z \"\$SYS_LOCALBASE\" ]; then SYS_LOCALBASE=\"${SYS_LOCALBASE}\" ; fi" >"${dir}/${PBI_INS_PATHSCRIPT}"
+ echo "if [ -z \"\$SYS_LOCALBASE\" ]; then SYS_LOCALBASE=\"${SYS_LOCALBASE}\" ; fi" >"${dir}/${PBI_UNINS_PATHSCRIPT}"
touch "$_tmpextf"
if [ -e "$_extf" ]; then cat "${_extf}" >> "${_tmpextf}" ; fi
More information about the Commits
mailing list