mirror of
https://gitea.osmocom.org/sim-card/simtrace2.git
synced 2026-03-16 21:28:33 +03:00
Set --no-parallel, as in v10 debhelper defaults to parallel building. This is apparently not supported by simtrace2's Makefile, it leads to multiple non-trivial build errors. In contrib/jenkins.sh we also don't build multiple firmwares in parallel. Related: OS#5958 Related: https://manpages.debian.org/testing/debhelper/debhelper-compat-upgrade-checklist.7.en.html Change-Id: I49fcc4fe9d3e795f8c3514d35ff3e2beca2917d1
17 lines
414 B
Makefile
Executable File
17 lines
414 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
DEBIAN := $(shell dpkg-parsechangelog | grep ^Version: | cut -d' ' -f2)
|
|
DEBVERS := $(shell echo '$(DEBIAN)' | cut -d- -f1)
|
|
VERSION := $(shell echo '$(DEBVERS)' | sed -e 's/[+-].*//' -e 's/~//g')
|
|
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
|
|
export DEB_LDFLAGS_MAINT_STRIP = -Wl,-Bsymbolic-functions
|
|
|
|
|
|
%:
|
|
dh $@ --no-parallel
|