aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/scripts/package/deb-build-option
blob: bd53624318f20a9d1ea79728c71180ad2db0c063 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0-only

# Set up CROSS_COMPILE if we are cross-compiling, but not called from the
# kernel toplevel Makefile
if [ -z "${CROSS_COMPILE}${cross_compiling}" -a "${DEB_HOST_ARCH}" != "${DEB_BUILD_ARCH}" ]; then
	echo CROSS_COMPILE=${DEB_HOST_GNU_TYPE}-
fi

version=$(dpkg-parsechangelog -S Version)
debian_revision="${version##*-}"

if [ "${version}" != "${debian_revision}" ]; then
	echo KBUILD_BUILD_VERSION=${debian_revision}
fi