adtools / os4sdl

Automatically exported from code.google.com/p/os4sdl
GNU Lesser General Public License v2.1
2 stars 2 forks source link

Incorrect fixed path in sdl-config #3

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Reported by Hubert Maier:

i found a bug/issue in the new sdl versions

sdl-config in local/newlib(clib2)/bin holds a wrong prefix (maybe from the
cross-compiler environment of Anrea?)

the prefix is /usr/local/amiga which breaks every port that uses that in
configure or anywhere else

version 1.2.11 had a if/then loop which asked for the host os to be AmigaOS and
change the prefix to /SDK/local/newlib(clib2)

It looked like this

#!/bin/sh
host_os=`uname`
if test "${host_os}" = AmigaOS; then
  prefix=/SDK/local/newlib
else
  prefix=/usr/local/amiga/ppc-amigaos/SDK/local/newlib
fi

Maybe this could be addressed for the next release?

Thank you very much for the ongoing development

Original issue reported on code.google.com by p...@petergordon.org.uk on 30 Mar 2010 at 8:05

GoogleCodeExporter commented 9 years ago
Let me know if the next release works for you.

Original comment by p...@petergordon.org.uk on 11 May 2010 at 6:47

GoogleCodeExporter commented 9 years ago
Yes, fixed with the latest release

Thanks a lot, Peter

Original comment by raziel_n...@web.de on 13 May 2010 at 3:26