From 9536efae4fecb35989b077f11b33cb8ca967b5b7 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 26 Apr 2005 22:56:53 +0000 Subject: fixed the removal of the endian test program to not fail on cygwin git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6362 a1c6a512-1295-4272-9138-f99709370657 --- tools/configure | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/configure b/tools/configure index 631589f..8272417 100755 --- a/tools/configure +++ b/tools/configure @@ -121,7 +121,10 @@ EOF endian="little" fi echo "Simulator environment deemed $endian endian" - rm /tmp/conftest-$id /tmp/conftest-$id.c + + # use wildcard here to make it work even if it was named *.exe like + # on cygwin + rm -f /tmp/conftest-$id* fi } -- cgit v1.1