Create stamp-debian in the kernel build directory before

building to workaround the kernel-package bug.

svn path=/branches/kernel-image-2.6.11/; revision=3294
This commit is contained in:
Jurij Smakov 2005-06-02 00:22:13 +00:00
parent 8a94a84792
commit 304b999448
1 changed files with 5 additions and 1 deletions

6
debian/Makefile vendored
View File

@ -179,7 +179,11 @@ $(kdir): post-install-$(subarch) $(controls)
-e 's/@abiname@/$(abiname)/g' | \
sed '/^[[:space:]]*$$/d' | \
sed 's/^Package:/\n&/g' > $(tkdir)/debian/control
touch $(tkdir)/debian/official
touch $(tkdir)/debian/official
#
# This is required to disable some buggy checks.
#
touch $(tkdir)/stamp-debian
if [ -n '$(patches)' ]; then \
cd $(tkdir); \
cat $(addprefix ../,$(patches)) | patch -p1; \