diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2006-01-09 21:43:17 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2006-01-09 21:43:17 +0000 |
| commit | 6422d07fa784de20f06b77f3081a4eac8e2ded12 (patch) | |
| tree | 4dbad2ad472f1a7d36fc391cd38540ed02021722 | |
| parent | 9cf5270f107f3491143eb62ed238155d6d66ef75 (diff) | |
| download | rockbox-6422d07fa784de20f06b77f3081a4eac8e2ded12.zip rockbox-6422d07fa784de20f06b77f3081a4eac8e2ded12.tar.gz rockbox-6422d07fa784de20f06b77f3081a4eac8e2ded12.tar.bz2 rockbox-6422d07fa784de20f06b77f3081a4eac8e2ded12.tar.xz | |
change separator for the LDFLAGS sed replacement since some people obviously
have commas in their LDFLAGS
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8318 a1c6a512-1295-4272-9138-f99709370657
| -rwxr-xr-x | tools/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index bac889f..68d2481 100755 --- a/tools/configure +++ b/tools/configure @@ -887,7 +887,7 @@ sed > Makefile \ -e "s,@PLUGINS@,${plugins},g" \ -e "s,@CODECS@,${codecs},g" \ -e "s,@GCCOPTS@,${GCCOPTS},g" \ - -e "s,@LDOPTS@,${LDOPTS},g" \ + -e "s!@LDOPTS@!${LDOPTS}!g" \ -e "s,@LOADADDRESS@,${loadaddress},g" \ -e "s,@EXTRADEF@,${extradefines},g" \ -e "s,@APPSDIR@,${appsdir},g" \ |