Export the MAKEFLAGS command before running the

command rather than sticking it on the command
line, since sparc32 is choking on it otherwise.

svn path=/trunk/kernel/source/linux-kernel-2.6.12/; revision=3464
This commit is contained in:
Jurij Smakov 2005-07-12 00:35:00 +00:00
parent 832e46a6b5
commit 78f462dc11
1 changed files with 6 additions and 2 deletions

8
debian/Makefile vendored
View File

@ -65,7 +65,9 @@ ifdef headers_subarch
kpkg_headers_cmd += --subarch $(headers_subarch)
endif
ifdef build_makeflags
kpkg_build_cmd := MAKEFLAGS=$(build_makeflags) $(kpkg_build_cmd)
export_makeflags := export MAKEFLAGS=$(build_makeflags)
else
export_makeflags := true
endif
#
# Note that next variable (kpkg_image_pre) is not going to be evaluated
@ -126,7 +128,8 @@ binary-arch: build headers-stamp $(istamps)
install-stamp-$(subarch)-%: build-$(subarch)-% build-stamp-$(subarch)-%
cp -al $< install-$*;
cd install-$*; \
cd install-$*; \
$(export_makeflags); \
$(strip $(kpkg_image_pre) $(subst @flavour@,$*,$(kpkg_image_cmd)))
cat install-$*/debian/files >> files;
rm -rf install-$*;
@ -221,6 +224,7 @@ $(kdir): post-install-$(subarch) $(controls)
build-stamp-$(subarch)-%: build-$(subarch)-%
PATH=$$PWD/bin:$$PATH; \
cd $<; \
$(export_makeflags); \
$(subst @flavour@,$*,$(kpkg_build_cmd)); \
$(if $(image_postproc),$(image_postproc),true); \
arch=$$(basename $$(readlink include/asm)); \