summaryrefslogtreecommitdiff
path: root/instsetoo_native/inc_openoffice
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-10-13 13:25:20 +0100
committerCaolán McNamara <caolanm@redhat.com>2010-10-13 20:29:37 +0100
commit6d5154ef0bff73b2e9833cd7528ab219f9fd1b0f (patch)
tree268358dee796cc0016d40c107d68d8941d63e688 /instsetoo_native/inc_openoffice
parent56b39b2a327d575616b9f77e3ce3cdd8a68a5a6b (diff)
AIX uses .a for shared libs
Diffstat (limited to 'instsetoo_native/inc_openoffice')
-rw-r--r--instsetoo_native/inc_openoffice/unix/find-requires-gnome.sh10
-rw-r--r--instsetoo_native/inc_openoffice/unix/find-requires-x11.sh7
2 files changed, 12 insertions, 5 deletions
diff --git a/instsetoo_native/inc_openoffice/unix/find-requires-gnome.sh b/instsetoo_native/inc_openoffice/unix/find-requires-gnome.sh
index fefea6460151..fbd0a6982bde 100644
--- a/instsetoo_native/inc_openoffice/unix/find-requires-gnome.sh
+++ b/instsetoo_native/inc_openoffice/unix/find-requires-gnome.sh
@@ -2,6 +2,10 @@
cat > /dev/null
[[ "${OUTPATH}" == unxlngx* ]] && mark64="()(64bit)"
-echo "libgnomevfs-2.so.0${mark64}"
-echo "libgconf-2.so.4${mark64}"
-
+if [[ "${OUTPATH}" == unxaig* ]]; then
+ echo "libgnomevfs-2.a(libgnomevfs-2.so.0${mark64})"
+ echo "libgconf-2.a(libgconf-2.so.4${mark64})"
+else
+ echo "libgnomevfs-2.so.0${mark64}"
+ echo "libgconf-2.so.4${mark64}"
+fi
diff --git a/instsetoo_native/inc_openoffice/unix/find-requires-x11.sh b/instsetoo_native/inc_openoffice/unix/find-requires-x11.sh
index b0565246fd3e..eab975ae4250 100644
--- a/instsetoo_native/inc_openoffice/unix/find-requires-x11.sh
+++ b/instsetoo_native/inc_openoffice/unix/find-requires-x11.sh
@@ -2,5 +2,8 @@
cat > /dev/null
[[ "${OUTPATH}" == unxlngx* ]] && mark64="()(64bit)"
-echo "libfreetype.so.6${mark64}"
-
+if [[ "${OUTPATH}" == unxaig* ]]; then
+ echo "libfreetype.a(libfreetype.so.6${mark64})"
+else
+ echo "libfreetype.so.6${mark64}"
+fi