diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-10-05 05:10:27 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-10-05 05:10:27 +0000 |
commit | 8187b0ccda766ff2000e954f01ba918faefc05d2 (patch) | |
tree | 7dfa36055a9689a672c14185d37a7396e5746b4b /Makefile | |
parent | 6ba17041381afeb8c1274cce4c6ffebda0253328 (diff) |
Major update to string handling. strcmp and friends were horribly
broken. They now test out as working properly.
-Erik
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -24,7 +24,7 @@ DIRS = error getent malloc misc regex stdio \ string termios time sysdeps #rpc all: libc.a -libc.a: subdirs headers +libc.a: headers subdirs @echo @echo Finally finished compiling... @echo @@ -32,9 +32,9 @@ libc.a: subdirs headers headers: dummy - @if [ ! -L "include/asm" ]; then ln -s /usr/src/linux/include/asm include/asm ; fi - @if [ ! -L "include/net" ]; then ln -s /usr/src/linux/include/net include/net ; fi - @if [ ! -L "include/linux" ]; then ln -s /usr/src/linux/include/linux include/linux ; fi + @if [ ! -L "include/asm" ]; then ln -s /usr/include/asm include/asm ; fi + @if [ ! -L "include/net" ]; then ln -s /usr/include/net include/net ; fi + @if [ ! -L "include/linux" ]; then ln -s /usr/include/linux include/linux ; fi tags: ctags -R |