Kaydet (Commit) 6d5154ef authored tarafından Caolán McNamara's avatar Caolán McNamara

AIX uses .a for shared libs

üst 56b39b2a
......@@ -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
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment