Browse Source

Change 'cd <foo> ; bar' to 'cd <foo> && bar' for proper error checking

Eric Andersen 22 years ago
parent
commit
01d1ae3769
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Makefile

+ 1 - 1
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