diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-01-01 21:25:10 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-01-01 21:25:10 +0000 |
commit | 01d1ae3769f7fb1fa66dbc0789a61b05fee3452f (patch) | |
tree | 3d5f46f8b11c97e98556068b54fdf8da40e4539f | |
parent | fb29bcf6a27036cce94240ae6a98307e40d7afb2 (diff) |
Change 'cd <foo> ; bar' to 'cd <foo> && bar' for proper error checking
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -91,7 +91,7 @@ headers: dummy fi; @ln -fs $(KERNEL_SOURCE)/include/linux include/linux @ln -fs ../libc/sysdeps/linux/$(TARGET_ARCH)/bits include/bits - (cd include/bits; ln -sf ../../../../../uClibc_config.h uClibc_config.h) + (cd include/bits && ln -sf ../../../../../uClibc_config.h uClibc_config.h) $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) headers uClibc_config.h: Makefile Config |