diff options
author | Jens Arnold <amiconn@rockbox.org> | 2005-02-22 20:00:19 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2005-02-22 20:00:19 +0000 |
commit | 6f0c5cd76865347537e902650492e6e78599bcea (patch) | |
tree | 9d0031b2ef4f6e5586e837163031cc7e19476372 /tools/configure | |
parent | cf208c50a2b52d0dd5a79567aeef4738c6082137 (diff) |
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-x | tools/configure | 4 |
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 \ -e "s,@SIMVER@,${simver},g" \ -e "s,@GCCVER@,${gccver},g" \ -e "s,@GCCNUM@,${gccnum},g" \ -<<EOF + -e "s,@UNAME@,${uname},g" \ +<<EOF ## Automaticly generated. http://www.rockbox.org/ export ROOTDIR=@ROOTDIR@ @@ -612,6 +613,7 @@ export SIMDIR=\$(ROOTDIR)/uisimulator/\$(SIMVER) export LDOPTS=@LDOPTS@ export GCCVER=@GCCVER@ export GCCNUM=@GCCNUM@ +export UNAME=@UNAME@ .PHONY: all clean tags zip |