[PC-BSD Commits] r12696 - pcbsd/current/src-sh/pbi-manager
svn at pcbsd.org
svn at pcbsd.org
Wed Sep 7 09:16:49 PDT 2011
Author: kris
Date: 2011-09-07 09:16:49 -0700 (Wed, 07 Sep 2011)
New Revision: 12696
Modified:
pcbsd/current/src-sh/pbi-manager/pbi-manager
Log:
Fixed bug copying linux compat libs into 9 PBIs
Modified: pcbsd/current/src-sh/pbi-manager/pbi-manager
===================================================================
--- pcbsd/current/src-sh/pbi-manager/pbi-manager 2011-09-07 16:12:29 UTC (rev 12695)
+++ pcbsd/current/src-sh/pbi-manager/pbi-manager 2011-09-07 16:16:49 UTC (rev 12696)
@@ -5826,7 +5826,7 @@
# Check if we created any linux stuff, and copy it into the correct PREFIX
auto_copy_linuxbase()
{
- if [ ! -d "/compat/linux/lib" ] ; then
+ if [ -d "/compat/linux/lib" ] ; then
echo "Copying linux compat libraries..."
tar cvf - -C /compat/linux/lib . 2>/dev/null | \
tar xvf -C ${PBI_PROGDIRPATH}/lib 2>/dev/null
More information about the Commits
mailing list