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

Unified Diff: remoting/remoting_host_linux.gypi

Issue 1412653005: Fix build_deb.sh script to work for any out directory, not only out/Release (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 | « remoting/host/installer/linux/build-deb.sh ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/remoting_host_linux.gypi
diff --git a/remoting/remoting_host_linux.gypi b/remoting/remoting_host_linux.gypi
index f9b89ea10c58402987ffc8f18db0e2ea12b63db7..ec890eaa4a9bee5239b2b87f6dd77118de89e505 100644
--- a/remoting/remoting_host_linux.gypi
+++ b/remoting/remoting_host_linux.gypi
@@ -8,7 +8,7 @@
'variables': {
'build_deb_script': 'host/installer/linux/build-deb.sh',
- 'deb_filename': 'host/installer/<!(["<(build_deb_script)", "-p", "-s", "<(DEPTH)"])',
+ 'deb_filename': '<(PRODUCT_DIR)/<!(["<(build_deb_script)", "-p", "-s", "<(DEPTH)"])',
'packaging_outputs': [
'<(deb_filename)',
'<!(echo <(deb_filename) | sed -e "s/.deb$/.changes/")',
@@ -84,7 +84,11 @@
'outputs': [
'<@(packaging_outputs)',
],
- 'action': [ '<(build_deb_script)', '-s', '<(DEPTH)' ],
+ 'action': [
+ '<(build_deb_script)',
+ '-s', '<(DEPTH)',
+ '-o', '<(PRODUCT_DIR)'
+ ],
},
],
},
« no previous file with comments | « remoting/host/installer/linux/build-deb.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698