diff options
author | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2007-02-14 19:53:54 +0000 |
---|---|---|
committer | Joakim Tjernlund <joakim.tjernlund@transmode.se> | 2007-02-14 19:53:54 +0000 |
commit | e2581aecf532bb62699afa99cd51126048064fdd (patch) | |
tree | fc87350bc12f48b7fb0d81040b17a6046a8fbc22 | |
parent | 50ca754115e03a6c7b587aff01914574eaa5c448 (diff) |
Revert previous commit as it is unclear if it is needed.
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in index e47bf4fda..c5d5e2bcb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -75,11 +75,9 @@ headers: include/bits/uClibc_config.h for i in $(HEADERS_BITS_ARCH) ; do \ $(LN) -fs ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits/$$i .; \ done; \ - if [ -n "$(HEADERS_BITS_SUBARCH)" ] ; then \ - for i in $(HEADERS_BITS_SUBARCH) ; do \ - $(LN) -fs ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits/$(TARGET_SUBARCH)/$$i .; \ - done; \ - fi + for i in $(HEADERS_BITS_SUBARCH) ; do \ + $(LN) -fs ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits/$(TARGET_SUBARCH)/$$i .; \ + done $(Q)\ cd include/sys; \ set -e; \ |