diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-07-26 05:12:16 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-07-26 05:12:16 +0000 |
commit | c7b1e319fbf9b9ac820208d17fc6a18382824da1 (patch) | |
tree | fcaa16533a07fbb6da761ecf94cc2820090d4d66 | |
parent | a4eb8be71c809905f1fc08d8c3f12ed53bfa28ce (diff) |
Kill ill advised find command that was not doing anything
productive, but did annoying things instead.
-Erik
-rw-r--r-- | Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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 |