[cig-commits] r18039 - cs/buildbot/trunk/buildbot/scripts

brad at geodynamics.org brad at geodynamics.org
Mon Mar 7 08:41:17 PST 2011


Author: brad
Date: 2011-03-07 08:41:16 -0800 (Mon, 07 Mar 2011)
New Revision: 18039

Modified:
   cs/buildbot/trunk/buildbot/scripts/packager.py
Log:
Exclude libexec and conf directories from tarball.

Modified: cs/buildbot/trunk/buildbot/scripts/packager.py
===================================================================
--- cs/buildbot/trunk/buildbot/scripts/packager.py	2011-03-05 05:25:20 UTC (rev 18038)
+++ cs/buildbot/trunk/buildbot/scripts/packager.py	2011-03-07 16:41:16 UTC (rev 18039)
@@ -21,8 +21,8 @@
     def __init__(self, config, opSys, python):
         
         binDirs = ["bin"]
-        libDirs = ["lib", "libexec"]
-        miscDirs = ["conf", "etc", "include", "share"]
+        libDirs = ["lib"]
+        miscDirs = ["etc", "include", "share"]
         if platform.machine() == "x86 64":
             libDirs.append("lib64")
 
@@ -667,7 +667,7 @@
 
         archive = distdir_arch + ".tar.gz"
         taggedArchive = tag + "-" + archive
-        status = os.system("tar cvzf " + archive + " " + " ".join(packingList) +">& log")
+        status = os.system("tar cvzf " + archive + " " + " ".join(packingList))
         if status != 0:
             sys.exit("tar: exit %d" % status)
 



More information about the CIG-COMMITS mailing list