diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-09-12 12:33:07 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-09-12 12:33:07 +0000 |
commit | 86f79df77062fdf12e5840c450ff3cbf350f4c9d (patch) | |
tree | 832c4aa00ddbb249132f62ad1226c638edac7102 /configure | |
parent | f5d613f35b991df74db7a7c1069573daf105e38e (diff) | |
download | qemu-86f79df77062fdf12e5840c450ff3cbf350f4c9d.tar.gz qemu-86f79df77062fdf12e5840c450ff3cbf350f4c9d.tar.bz2 qemu-86f79df77062fdf12e5840c450ff3cbf350f4c9d.zip |
Fix OpenSolaris build breaking typos
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1585,7 +1585,7 @@ if check_linker_flags --whole-archive --no-whole-archive ; then arlibs_end="-Wl,--no-whole-archive" elif check_linker_flags -z,allextract -z,defaultextract ; then # Solaris ld - arlibs_begin"=-Wl,-z,allextract" + arlibs_begin="-Wl,-z,allextract" arlibs_end="-Wl,-z,defaultextract" elif check_linker_flags -all_load ; then # Mac OS X @@ -1597,7 +1597,7 @@ else exit 1 fi -if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaries" != yes -a \ +if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaris" != yes -a \ "$aix" != "yes" ; then libs_softmmu="-lutil $libs_softmmu" fi |