diff options
author | Stefan Reinauer <stepan@openbios.org> | 2006-02-19 14:43:48 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2006-02-19 14:43:48 +0000 |
commit | 7db27ee6483f6b31023030a77fe37bc4c1842ac8 (patch) | |
tree | 5bf0a3e8dbf5ab9db99857b87c0ad2ed527495ad /src/config | |
parent | afd34e61ace6476946f9f30af92e0f714c901013 (diff) |
gcc 4.1 fixes.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2177 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/Options.lb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/Options.lb b/src/config/Options.lb index 8f307063f8..33e132b33e 100644 --- a/src/config/Options.lb +++ b/src/config/Options.lb @@ -146,7 +146,7 @@ define LINUXBIOS_COMPILER comment "Build compiler" end define LINUXBIOS_LINKER - default "$(shell $(CC) -Wl,-v 2>&1 | grep version | tail -n 1)" + default "$(shell $(CC) -Wl,--version 2>&1 | grep version | tail -n 1)" export always format "\"%s\"" comment "Build linker" |