diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-10-23 17:08:59 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-10-23 17:08:59 +0000 |
commit | 44e205c90c74d400fc096e0e5bd10add1db8a72e (patch) | |
tree | 9c75c5354c31a5e24907f4470813f9846392f554 /libc/sysdeps/linux/Makefile | |
parent | 25738fcb78c83ce9f4aa0d0114fdcf3bf4f58c71 (diff) |
Another bug fix. ioctl lacked a ;
Diffstat (limited to 'libc/sysdeps/linux/Makefile')
-rw-r--r-- | libc/sysdeps/linux/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/Makefile b/libc/sysdeps/linux/Makefile index 1440898b5..3fac77e5f 100644 --- a/libc/sysdeps/linux/Makefile +++ b/libc/sysdeps/linux/Makefile @@ -21,7 +21,7 @@ # respective copyright holders. # Figure out what arch to build... -ARCH = $(shell uname -m | sed -e 's/i.86/i386/' | sed -e 's/sparc.*/sparc/') +ARCH = $(shell uname -m | sed -e 's/i.86/i386/' -e 's/sparc.*/sparc/' -e 's/arm.*/arm/g') DIRS = $(ARCH) common |