summaryrefslogtreecommitdiff
path: root/tools/configure
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-02-22 20:00:19 +0000
committerJens Arnold <amiconn@rockbox.org>2005-02-22 20:00:19 +0000
commit6f0c5cd76865347537e902650492e6e78599bcea (patch)
tree9d0031b2ef4f6e5586e837163031cc7e19476372 /tools/configure
parentcf208c50a2b52d0dd5a79567aeef4738c6082137 (diff)
downloadrockbox-6f0c5cd76865347537e902650492e6e78599bcea.tar.gz
rockbox-6f0c5cd76865347537e902650492e6e78599bcea.zip
Proper check for cygwin build environment, avoids win32 error 5 when loading plugins
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6040 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/configure')
-rwxr-xr-xtools/configure4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure
index c56f28edba..4ebe39c37a 100755
--- a/tools/configure
+++ b/tools/configure
@@ -573,7 +573,8 @@ sed > Makefile \
573 -e "s,@SIMVER@,${simver},g" \ 573 -e "s,@SIMVER@,${simver},g" \
574 -e "s,@GCCVER@,${gccver},g" \ 574 -e "s,@GCCVER@,${gccver},g" \
575 -e "s,@GCCNUM@,${gccnum},g" \ 575 -e "s,@GCCNUM@,${gccnum},g" \
576<<EOF 576 -e "s,@UNAME@,${uname},g" \
577<<EOF
577## Automaticly generated. http://www.rockbox.org/ 578## Automaticly generated. http://www.rockbox.org/
578 579
579export ROOTDIR=@ROOTDIR@ 580export ROOTDIR=@ROOTDIR@
@@ -612,6 +613,7 @@ export SIMDIR=\$(ROOTDIR)/uisimulator/\$(SIMVER)
612export LDOPTS=@LDOPTS@ 613export LDOPTS=@LDOPTS@
613export GCCVER=@GCCVER@ 614export GCCVER=@GCCVER@
614export GCCNUM=@GCCNUM@ 615export GCCNUM=@GCCNUM@
616export UNAME=@UNAME@
615 617
616.PHONY: all clean tags zip 618.PHONY: all clean tags zip
617 619