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

Side by Side Diff: src/platform/installer/debian/rules

Issue 445002: Switch to GPT partition format.
Patch Set: Address adlr comment Created 11 years 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
OLDNEW
1 #!/usr/bin/make -f 1 #!/usr/bin/make -f
2 # -*- makefile -*- 2 # -*- makefile -*-
3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. 3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # Uncomment this to turn on verbose mode. 7 # Uncomment this to turn on verbose mode.
8 #export DH_VERBOSE=1 8 #export DH_VERBOSE=1
9 9
10 build: build-stamp 10 build: build-stamp
11 build-stamp: 11 build-stamp:
12 dh_testdir 12 dh_testdir
13 touch $@ 13 touch $@
14 14
15 clean: 15 clean:
16 dh_testdir 16 dh_testdir
17 dh_testroot 17 dh_testroot
18 rm -f build-stamp 18 rm -f build-stamp
19 dh_clean 19 dh_clean
20 20
21 install: 21 install:
22 dh_testdir 22 dh_testdir
23 dh_testroot 23 dh_testroot
24 dh_prep 24 dh_prep
25 dh_installdirs 25 dh_installdirs
26 cp $(CURDIR)/chromeos_install.sh \ 26 cp $(CURDIR)/chromeos_install.sh \
27 $(CURDIR)/debian/chromeos-installer/usr/sbin/chromeos-install 27 $(CURDIR)/debian/chromeos-installer/usr/sbin/chromeos-install
28 cp $(CURDIR)/chromeos_install_functions.sh \
29 $(CURDIR)/debian/chromeos-installer/usr/sbin/
28 cp $(CURDIR)/postinst.sh \ 30 cp $(CURDIR)/postinst.sh \
29 $(CURDIR)/debian/chromeos-installer/usr/sbin/chromeos-postinst 31 $(CURDIR)/debian/chromeos-installer/usr/sbin/chromeos-postinst
30 ln -s /usr/sbin/chromeos-postinst \ 32 ln -s /usr/sbin/chromeos-postinst \
31 $(CURDIR)/debian/chromeos-installer/postinst 33 $(CURDIR)/debian/chromeos-installer/postinst
32 34
33 # Build architecture-independent files here. 35 # Build architecture-independent files here.
34 binary-indep: install 36 binary-indep: install
35 dh_testdir 37 dh_testdir
36 dh_testroot 38 dh_testroot
37 dh_link 39 dh_link
38 dh_strip 40 dh_strip
39 dh_compress 41 dh_compress
40 dh_fixperms 42 dh_fixperms
41 dh_installdeb 43 dh_installdeb
42 dh_shlibdeps 44 dh_shlibdeps
43 dh_gencontrol 45 dh_gencontrol
44 dh_md5sums 46 dh_md5sums
45 dh_builddeb 47 dh_builddeb
46 48
47 binary: binary-indep 49 binary: binary-indep
48 50
49 .PHONY: build clean install binary-indep binary 51 .PHONY: build clean install binary-indep binary
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698