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

Side by Side Diff: debian.chrome/rules.d/4-checks.mk

Issue 646032: Rename config to match naming convention. (Closed)
Patch Set: Send mail Created 10 years, 10 months 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 | « debian.chrome/rules.d/3-binary-indep.mk ('k') | debian.chrome/rules.d/5-udebs.mk » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Check ABI for package against last release (if not same abinum)
2 abi-%: $(abidir)/%
3 @# Empty for make to be happy
4 $(abidir)/%: $(stampdir)/stamp-build-%
5 install -d $(abidir)
6 sed -e 's/^\(.\+\)[[:space:]]\+\(.\+\)[[:space:]]\(.\+\)$$/\3 \2 \1/' \
7 $(builddir)/build-$*/Module.symvers | sort > $@
8
9 abi-check-%: $(abidir)/%
10 @perl -f $(DEBIAN)/scripts/abi-check "$*" "$(prev_abinum)" "$(abinum)" \
11 "$(prev_abidir)" "$(abidir)" "$(skipabi)"
12
13 # Check the module list against the last release (always)
14 module-%: $(abidir)/%.modules
15 @# Empty for make to be happy
16 $(abidir)/%.modules: $(stampdir)/stamp-build-%
17 install -d $(abidir)
18 find $(builddir)/build-$*/ -name \*.ko | \
19 sed -e 's/.*\/\([^\/]*\)\.ko/\1/' | sort > $@
20
21 module-check-%: $(abidir)/%.modules
22 @perl -f $(DEBIAN)/scripts/module-check "$*" \
23 "$(prev_abidir)" "$(abidir)" $(skipmodule)
24
25 checks-%: abi-check-% module-check-%
26 @# Will be calling more stuff later
OLDNEW
« no previous file with comments | « debian.chrome/rules.d/3-binary-indep.mk ('k') | debian.chrome/rules.d/5-udebs.mk » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698