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

Unified Diff: installer/linux/build.scons

Issue 174080: Linux: build a 32-bit Debian package too. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 4 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 | installer/linux/debian_amd64/changelog » ('j') | installer/linux/debian_i386/rules » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: installer/linux/build.scons
===================================================================
--- installer/linux/build.scons (revision 23402)
+++ installer/linux/build.scons (working copy)
@@ -149,8 +149,8 @@
$$(dirname $TARGET)""")
return targets
-
- BuildDebianPackage(["debian_amd64/changelog",
+ # Build amd64 package.
+ BuildDebianPackage(["debian_common/changelog",
"debian_amd64/control",
"debian_amd64/google-o3d.install",
"debian_amd64/links",
@@ -167,7 +167,18 @@
output_dir='$ARTIFACTS_DIR',
force_version=env.get('O3D_PLUGIN_VERSION'))
- # TODO(tschmelcher): Also build an i386 deb.
+ # Build i386 package.
+ BuildDebianPackage(["debian_common/changelog",
+ "debian_i386/control",
+ "debian_i386/google-o3d.install",
+ "debian_i386/links",
+ "debian_i386/rules"
+ ],
+ [("libnpo3dautoplugin.so",
+ '$ARTIFACTS_DIR/libnpo3dautoplugin.so')
+ ],
+ output_dir='$ARTIFACTS_DIR',
+ force_version=env.get('O3D_PLUGIN_VERSION'))
else:
print('dpkg-buildpackage not found in PATH; Debian packages will not be '
« no previous file with comments | « no previous file | installer/linux/debian_amd64/changelog » ('j') | installer/linux/debian_i386/rules » ('J')

Powered by Google App Engine
This is Rietveld 408576698