[PC-BSD Commits] r3711 - pbibuild/pbi-source/PBCsource
svn at pcbsd.org
svn at pcbsd.org
Tue Mar 31 12:30:07 PST 2009
Author: kris
Date: 2009-03-31 13:30:07 -0700 (Tue, 31 Mar 2009)
New Revision: 3711
Modified:
pbibuild/pbi-source/PBCsource/createpbi.sh
Log:
Updated createpbi.sh, don't need to blindly copy over /lib anymore into a PBI. The smarter library detection will copy any libs from there if needed
Modified: pbibuild/pbi-source/PBCsource/createpbi.sh
===================================================================
--- pbibuild/pbi-source/PBCsource/createpbi.sh 2009-03-31 19:12:29 UTC (rev 3710)
+++ pbibuild/pbi-source/PBCsource/createpbi.sh 2009-03-31 20:30:07 UTC (rev 3711)
@@ -161,11 +161,7 @@
# Reset our LD_LIBRARY_PATH back to the orignal
LD_LIBRARY_PATH="${LD_LIBRARY_OLD}" ; export LD_LIBRARY_PATH
- # Now copy all the files from /lib into the autolibs directory since this
- # improves compat across FBSD versions
-
- tar cvf - -C /lib . 2>/dev/null | tar xvf - -C ${PBILOC}/autolibs 2>/dev/null
- # Do the same for libexec
+ # Copy over ld-elf from libexec and any others
tar cvf - -C /libexec . 2>/dev/null | tar xvf - -C ${PBILOC}/autolibs 2>/dev/null
# Set the perms to make them removable for libs
More information about the Commits
mailing list