summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-01-01 21:25:10 +0000
committerEric Andersen <andersen@codepoet.org>2002-01-01 21:25:10 +0000
commit01d1ae3769f7fb1fa66dbc0789a61b05fee3452f (patch)
tree3d5f46f8b11c97e98556068b54fdf8da40e4539f
parentfb29bcf6a27036cce94240ae6a98307e40d7afb2 (diff)
Change 'cd <foo> ; bar' to 'cd <foo> && bar' for proper error checking
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index cac515ad0..b22fff82e 100644
--- a/Makefile
+++ b/Makefile
@@ -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