summaryrefslogtreecommitdiff
path: root/ltconfig
diff options
context:
space:
mode:
authorShawn Amundson <amundson@src.gnome.org>1998-01-21 05:04:45 +0000
committerShawn Amundson <amundson@src.gnome.org>1998-01-21 05:04:45 +0000
commit06f64ff941806ed721edcee71b3f9056fb9c2f43 (patch)
treea6ee27f3949e7d18b9301e66e6814c6cd78fe9c2 /ltconfig
parent4c2931aab5fb3c82c5c2a72d1c26718cfdaf3dda (diff)
downloadgtk+-06f64ff941806ed721edcee71b3f9056fb9c2f43.tar.gz
Got rid of -z text for Solaris x86... again... sigh.
-Shawn
Diffstat (limited to 'ltconfig')
-rwxr-xr-xltconfig5
1 files changed, 4 insertions, 1 deletions
diff --git a/ltconfig b/ltconfig
index e9d3a83795..6140ca7c6c 100755
--- a/ltconfig
+++ b/ltconfig
@@ -793,7 +793,10 @@ else
;;
solaris2*)
- archive_cmds='$LD -G -z text -h $soname -o $lib$libobjs$deplibs'
+ case "$host_cpu" in
+ i386) archive_cmds='$LD -G -h $soname -o $lib$libobjs$deplibs' ;;
+ *) archive_cmds='$LD -G -z text -h $soname -o $lib$libobjs$deplibs' ;;
+ esac
hardcode_libdir_flag_spec='-R$libdir'
hardcode_shlibpath_var=no
;;