diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-04-26 22:56:53 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-04-26 22:56:53 +0000 |
| commit | 9536efae4fecb35989b077f11b33cb8ca967b5b7 (patch) | |
| tree | 431d838d7c5c4ca71a720e45c07e83c3b1b5c2dd | |
| parent | 6c38d8513bb1ec87a682f28b5e9bd38475b05fd8 (diff) | |
| download | rockbox-9536efae4fecb35989b077f11b33cb8ca967b5b7.zip rockbox-9536efae4fecb35989b077f11b33cb8ca967b5b7.tar.gz rockbox-9536efae4fecb35989b077f11b33cb8ca967b5b7.tar.bz2 rockbox-9536efae4fecb35989b077f11b33cb8ca967b5b7.tar.xz | |
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
| -rwxr-xr-x | tools/configure | 5 |
1 files changed, 4 insertions, 1 deletions
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 } |