summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-07-26 05:12:16 +0000
committerEric Andersen <andersen@codepoet.org>2002-07-26 05:12:16 +0000
commitc7b1e319fbf9b9ac820208d17fc6a18382824da1 (patch)
treefcaa16533a07fbb6da761ecf94cc2820090d4d66 /Makefile
parenta4eb8be71c809905f1fc08d8c3f12ed53bfa28ce (diff)
Kill ill advised find command that was not doing anything
productive, but did annoying things instead. -Erik
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 0c199a2df..59f5bb8ea 100644
--- a/Makefile
+++ b/Makefile
@@ -375,10 +375,9 @@ distclean clean:
$(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean; \
fi;
@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); \
- find . -type l -exec rm -f {} \; ; \
+ rm -f ldso/ldso/mipsel; \
+ rm -f libc/sysdeps/linux/mipsel; \
+ rm -f libpthread/linuxthreads/sysdeps/mipsel; \
fi;
dist release: distclean