Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Unified Diff: tools/create_debian_packages.py

Issue 233073002: Remove i386 support from debian package creation script (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/create_debian_packages.py
===================================================================
--- tools/create_debian_packages.py (revision 34911)
+++ tools/create_debian_packages.py (working copy)
@@ -65,10 +65,6 @@
print "Building source package"
RunBuildPackage(['-S', '-us', '-uc'], join(temp_dir, tarroot));
- # Build 32-bit binary package.
- print "Building i386 package"
- RunBuildPackage(['-B', '-ai386', '-us', '-uc'], join(temp_dir, tarroot));
-
# Build 64-bit binary package.
print "Building amd64 package"
RunBuildPackage(['-B', '-aamd64', '-us', '-uc'], join(temp_dir, tarroot));
@@ -80,17 +76,12 @@
'%s.orig.tar.gz' % debbase,
'%s-1.debian.tar.gz' % debbase
]
- i386_package = [
- '%s-1_i386.deb' % debbase
- ]
amd64_package = [
'%s-1_amd64.deb' % debbase
]
for name in source_package:
copyfile(join(temp_dir, name), join(out_dir, name))
- for name in i386_package:
- copyfile(join(temp_dir, name), join(out_dir, name))
for name in amd64_package:
copyfile(join(temp_dir, name), join(out_dir, name))
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698