File: rules

package info (click to toggle)
systemd-shim 9-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 588 kB
  • ctags: 269
  • sloc: ansic: 1,910; sh: 1,369; makefile: 53
file content (17 lines) | stat: -rwxr-xr-x 396 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/make -f
# -*- makefile -*-

%:
	dh $@  --with autoreconf

override_dh_install:
	dh_install
	rm -rf debian/systemd-shim/etc

# StartTransientUnit D-BUS API change in 209
override_dh_gencontrol:
	if [ `pkg-config --modversion systemd` -ge 209 ]; then \
	    dh_gencontrol -- -Vsystemd:Breaks='systemd (<< 209)'; \
	else \
	    dh_gencontrol -- -Vsystemd:Breaks='systemd (>= 209)'; \
	fi