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

brad at geodynamics.org brad at geodynamics.org
Thu Jun 7 09:37:54 PDT 2012


Author: brad
Date: 2012-06-07 09:37:53 -0700 (Thu, 07 Jun 2012)
New Revision: 20330

Modified:
   cs/buildbot/trunk/buildbot/scripts/packager.py
Log:
Updated rebasing parameters in cygwin packaging. Use base of 0x70000000 and increment downward rather than upward. This is based on the cygwin rebase all script.

Modified: cs/buildbot/trunk/buildbot/scripts/packager.py
===================================================================
--- cs/buildbot/trunk/buildbot/scripts/packager.py	2012-06-07 00:05:51 UTC (rev 20329)
+++ cs/buildbot/trunk/buildbot/scripts/packager.py	2012-06-07 16:37:53 UTC (rev 20330)
@@ -389,7 +389,7 @@
         sys.exit("no DLLs found!")
     dlls = ' '.join(dlls)
 
-    status = os.system("""rebase -b 0x40000000 -o 0x100000 %s""" % dlls)
+    status = os.system("""rebase -v -d -b 0x70000000 -o 0x100000 %s""" % dlls)
     if status != 0:
         sys.exit("rebase: exit %d" % status)
     return



More information about the CIG-COMMITS mailing list