diff options
author | tschmelcher@chromium.org <tschmelcher@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-10 20:00:44 +0000 |
---|---|---|
committer | tschmelcher@chromium.org <tschmelcher@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-10 20:00:44 +0000 |
commit | 5cff506ccd4f4381bfdf0620b308cb105abd4719 (patch) | |
tree | 80b5c307c8a92934a3eef5215bf1ca71486f3e69 /o3d | |
parent | dddf53e935650c413e28b677416bb907a21485ba (diff) | |
download | chromium_src-5cff506ccd4f4381bfdf0620b308cb105abd4719.zip chromium_src-5cff506ccd4f4381bfdf0620b308cb105abd4719.tar.gz chromium_src-5cff506ccd4f4381bfdf0620b308cb105abd4719.tar.bz2 |
Linux: Make the Debian package build rules work with both Make and SCons.
TEST=built on Linux with both Make and SCons
BUG=none
Review URL: http://codereview.chromium.org/1997008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46846 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d')
-rw-r--r-- | o3d/installer/linux/debian.in/debian.gyp | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/o3d/installer/linux/debian.in/debian.gyp b/o3d/installer/linux/debian.in/debian.gyp index 51abeca..614e311 100644 --- a/o3d/installer/linux/debian.in/debian.gyp +++ b/o3d/installer/linux/debian.in/debian.gyp @@ -77,16 +77,15 @@ '<(DEBIAN_DIR)/rules', ], 'action': [ - 'cd', - '<(INSTALLER_DIR)', - '&&', - 'dpkg-buildpackage', - '-uc', # Don't sign the changes file - '-tc', # Clean the tree - '-b', # Don't produce a source build - '-a<(ARCH)', - '-D', # -a suppresses build-dep checking, so turn it back on - '-rfakeroot', + 'sh', + '-c', + 'cd "<(INSTALLER_DIR)" && dpkg-buildpackage ' + '-uc ' # Don't sign the changes file + '-tc ' # Clean the tree + '-b ' # Don't produce a source build + '-a<(ARCH) ' + '-D ' # -a suppresses build-dep checking, so turn it back on + '-rfakeroot' ], 'outputs': [ '<(PRODUCT_DIR)/google-o3d_<(plugin_version)_<(ARCH).changes', |