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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | remoting/host/installer/linux/build-deb.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # This Makefile is used by debhelper, which supplies the appropriate value of 5 # This Makefile is used by debhelper, which supplies the appropriate value of
6 # variables not defined here, such as DESTDIR. 6 # variables not defined here, such as DESTDIR.
7 7
8 SRC_DIR = ../../../.. 8 SRC_DIR = ../../../..
9 BUILD_DIR = $(SRC_DIR)/out/Release 9 ifndef BUILD_DIR
10 BUILD_DIR = $(SRC_DIR)/out/Release
11 endif
10 12
11 CRON_DIR = $(DESTDIR)/etc/cron.daily 13 CRON_DIR = $(DESTDIR)/etc/cron.daily
12 DOC_DIR = $(DESTDIR)/usr/share/doc/chrome-remote-desktop 14 DOC_DIR = $(DESTDIR)/usr/share/doc/chrome-remote-desktop
13 INSTALL_DIR = $(DESTDIR)/opt/google/chrome-remote-desktop 15 INSTALL_DIR = $(DESTDIR)/opt/google/chrome-remote-desktop
14 NATIVE_MESSAGING_DIR = $(DESTDIR)/etc/opt/chrome/native-messaging-hosts 16 NATIVE_MESSAGING_DIR = $(DESTDIR)/etc/opt/chrome/native-messaging-hosts
15 17
16 ME2ME_PROGNAME = $(BUILD_DIR)/remoting_me2me_host 18 ME2ME_PROGNAME = $(BUILD_DIR)/remoting_me2me_host
17 ME2ME_DEBUGFILE = $(ME2ME_PROGNAME).debug 19 ME2ME_DEBUGFILE = $(ME2ME_PROGNAME).debug
18 START_PROGNAME = $(BUILD_DIR)/remoting_start_host 20 START_PROGNAME = $(BUILD_DIR)/remoting_start_host
19 START_DEBUGFILE = $(START_PROGNAME).debug 21 START_DEBUGFILE = $(START_PROGNAME).debug
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 for locale in $$(ls $(BUILD_DIR)/remoting_locales); do \ 67 for locale in $$(ls $(BUILD_DIR)/remoting_locales); do \
66 install "$(BUILD_DIR)/remoting_locales/$$locale" \ 68 install "$(BUILD_DIR)/remoting_locales/$$locale" \
67 "$(INSTALL_DIR)/remoting_locales/$$locale"; \ 69 "$(INSTALL_DIR)/remoting_locales/$$locale"; \
68 done 70 done
69 71
70 install $(BUILD_DIR)/remoting/installer/cron/chrome-remote-desktop \ 72 install $(BUILD_DIR)/remoting/installer/cron/chrome-remote-desktop \
71 "$(CRON_DIR)/chrome-remote-desktop" 73 "$(CRON_DIR)/chrome-remote-desktop"
72 74
73 install -m 0644 \ 75 install -m 0644 \
74 "$(BUILD_DIR)/gen/remoting/CREDITS.txt" "$(DOC_DIR)/CREDITS.txt" 76 "$(BUILD_DIR)/gen/remoting/CREDITS.txt" "$(DOC_DIR)/CREDITS.txt"
OLDNEW
« 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