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

Unified Diff: remoting/host/installer/linux/Makefile

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 | « no previous file | remoting/host/installer/linux/build-deb.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/installer/linux/Makefile
diff --git a/remoting/host/installer/linux/Makefile b/remoting/host/installer/linux/Makefile
index 06851ce461a36e4890ac5311dcb98f256f5cd8e3..73d11f49086c3134acc5319b19388a1645d72bf9 100644
--- a/remoting/host/installer/linux/Makefile
+++ b/remoting/host/installer/linux/Makefile
@@ -6,7 +6,9 @@
# variables not defined here, such as DESTDIR.
SRC_DIR = ../../../..
-BUILD_DIR = $(SRC_DIR)/out/Release
+ifndef BUILD_DIR
+ BUILD_DIR = $(SRC_DIR)/out/Release
+endif
CRON_DIR = $(DESTDIR)/etc/cron.daily
DOC_DIR = $(DESTDIR)/usr/share/doc/chrome-remote-desktop
« no previous file with comments | « no previous file | remoting/host/installer/linux/build-deb.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698