diff options
| author | Linus Torvalds <torvalds@home.osdl.org> | 2003-07-09 20:56:03 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.osdl.org> | 2003-07-09 20:56:03 -0700 |
| commit | 12759089364a7b7ed071c0fbd4db5fe4545b3fe6 (patch) | |
| tree | 94bc4f301e9e480f31452f52ceafedbedba2dcc2 | |
| parent | e02f3ca365fc5f929631a2e80668f17dbd214a10 (diff) | |
Fix mailer-induced corruption in initramfs build rules
| -rw-r--r-- | usr/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/Makefile b/usr/Makefile index 295f32bdc51b..742794558136 100644 --- a/usr/Makefile +++ b/usr/Makefile @@ -6,8 +6,8 @@ host-progs := gen_init_cpio clean-files := initramfs_data.cpio.gz $(src)/initramfs_data.S: $(obj)/initramfs_data.cpio.gz - echo " .section .init.ramfs,\"a\"" > $(src)/initramfs_data.S - echo ".incbin \"usr/initramfs_data.cpio.gz\"" >> $(src)/initramfs_data.S + echo " .section .init.ramfs,\"a\"" > $(src)/initramfs_data.S + echo ".incbin \"usr/initramfs_data.cpio.gz\"" >> $(src)/initramfs_data.S # initramfs-y are the programs which will be copied into the CPIO # archive. Currently, the filenames are hardcoded in gen_init_cpio, |
