Strip trailing whitespace

This commit is contained in:
Paul Menzel 2016-12-13 19:10:21 +01:00
parent 6040851d36
commit 92b20bdfb6
2 changed files with 4 additions and 4 deletions

View File

@ -81,7 +81,7 @@ define define_module =
$(build)/$($1_dir)/.config: config/$($1_config) $(build)/$($1_dir)/.canary $(build)/$($1_dir)/.config: config/$($1_config) $(build)/$($1_dir)/.canary
cp -a "$$<" "$$@" cp -a "$$<" "$$@"
endif endif
# Use the module's configure variable to build itself # Use the module's configure variable to build itself
$(build)/$($1_dir)/.configured: \ $(build)/$($1_dir)/.configured: \
@ -215,7 +215,7 @@ initrd.cpio: $(initrd_bins) $(initrd_libs) initrd_lib_install
) \ ) \
| cpio --quiet -H newc -o \ | cpio --quiet -H newc -o \
| ../cpio-clean \ | ../cpio-clean \
> "../$@.tmp" > "../$@.tmp"
if ! cmp --quiet "$@" "$@.tmp"; then \ if ! cmp --quiet "$@" "$@.tmp"; then \
mv "$@.tmp" "$@"; \ mv "$@.tmp" "$@"; \
else \ else \
@ -224,7 +224,7 @@ initrd.cpio: $(initrd_bins) $(initrd_libs) initrd_lib_install
fi fi
initrd.intermediate: initrd.cpio initrd.intermediate: initrd.cpio
# populate the coreboot initrd image from the one we built. # populate the coreboot initrd image from the one we built.
# 4.4 doesn't allow this, but building from head does. # 4.4 doesn't allow this, but building from head does.

View File

@ -35,7 +35,7 @@ Components:
The top level `Makefile` will handle most of the details -- it downloads The top level `Makefile` will handle most of the details -- it downloads
the various packages, patches them, configures and builds, and then the various packages, patches them, configures and builds, and then
copies the necessary parts into the `initrd` directory. copies the necessary parts into the `initrd` directory.
Notes: Notes:
--- ---