diff options
author | Tarek Soliman | 2011-09-13 18:13:06 -0500 |
---|---|---|
committer | Tarek Soliman | 2011-09-22 22:07:44 -0500 |
commit | b044ae6b986b6d9d9be9a1c16270c85388078995 (patch) | |
tree | f4a98277866953197b71cd80501d80c323ace069 /backends/platform/maemo/debian | |
parent | 07569e93c59e5e1e29b365c477950039e99521fb (diff) | |
download | scummvm-rg350-b044ae6b986b6d9d9be9a1c16270c85388078995.tar.gz scummvm-rg350-b044ae6b986b6d9d9be9a1c16270c85388078995.tar.bz2 scummvm-rg350-b044ae6b986b6d9d9be9a1c16270c85388078995.zip |
MAEMO: added comment to clarify debian/postinst
Diffstat (limited to 'backends/platform/maemo/debian')
-rw-r--r-- | backends/platform/maemo/debian/postinst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/backends/platform/maemo/debian/postinst b/backends/platform/maemo/debian/postinst index 89b579a3f6..3925f6c275 100644 --- a/backends/platform/maemo/debian/postinst +++ b/backends/platform/maemo/debian/postinst @@ -1,4 +1,10 @@ #! /bin/sh + +# This is a workaround for older maemo versions related to the icon. +# The /usr/share/icons/scummvm.xpm icon is needed for OS2006 (Nokia 770) +# but if present it overrides nicer icons for newer systems in /usr/share/icons/hicolor. +# This workaround removes it if the OS isn't old (2006/2007). + if [ "$1" = "configure" ] ; then OSVER=$OSSO_VERSION [ -z "$OSVER" -a -f /etc/osso_software_version ] && OSVER=`cat /etc/osso_software_version` |