diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2002-07-24 16:34:31 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2002-07-24 16:34:31 +0000 |
commit | 006b3fd5c8503b51be482468552c23e56eb84811 (patch) | |
tree | b9ae1edfd9223bdc6d3ac73eb8794bed10f0ea0d /Makefile | |
parent | cf61ef0c0925e1ef2a66c59e2fb5f8e3a9fa2466 (diff) | |
download | uClibc-alpine-006b3fd5c8503b51be482468552c23e56eb84811.tar.bz2 uClibc-alpine-006b3fd5c8503b51be482468552c23e56eb84811.tar.xz |
This rule is only necessary for little endian MIPS.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -374,7 +374,7 @@ distclean clean: @if [ -d libc/sysdeps/linux/$(TARGET_ARCH) ]; then \ $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean; \ fi; - @if [ $(TARGET_ARCH) = "mipsel" -o $(TARGET_ARCH) = "mips" ]; then \ + @if [ $(TARGET_ARCH) = "mipsel" ]; then \ rm -f libc/sysdeps/linux/$(TARGET_ARCH); \ rm -f ldso/ldso/$(TARGET_ARCH); \ rm -f libpthread/linuxthreads/sysdeps/$(TARGET_ARCH); \ |