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
cp -a "$$<" "$$@"
endif
# Use the module's configure variable to build itself
$(build)/$($1_dir)/.configured: \
@ -215,7 +215,7 @@ initrd.cpio: $(initrd_bins) $(initrd_libs) initrd_lib_install
) \
| cpio --quiet -H newc -o \
| ../cpio-clean \
> "../$@.tmp"
> "../$@.tmp"
if ! cmp --quiet "$@" "$@.tmp"; then \
mv "$@.tmp" "$@"; \
else \
@ -224,7 +224,7 @@ initrd.cpio: $(initrd_bins) $(initrd_libs) initrd_lib_install
fi
initrd.intermediate: initrd.cpio
# populate the coreboot initrd image from the one we built.
# 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 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:
---