Changeset 4227
- Timestamp:
- 04/25/08 16:48:48 (2 months ago)
- Location:
- trunk
- Files:
-
- 4 modified
-
RELEASE_NOTES.txt (modified) (1 diff)
-
scripts/debian/postinst (modified) (3 diffs)
-
scripts/debian/postrm (modified) (2 diffs)
-
scripts/debian/prerm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/RELEASE_NOTES.txt
r4226 r4227 119 119 Updated the "lgtxml.xsl" XSLT style-sheet to ensure that the generated 120 120 HTML files are fully compliant with the HTML 4.01 standard. 121 122 Updated the Debian installer package shell scripts for POSIX compliance, 123 removing dependencies on bash shell features. 121 124 122 125 -
trunk/scripts/debian/postinst
r4220 r4227 1 #!/bin/ bash1 #!/bin/sh 2 2 3 3 ## ================================================================ … … 16 16 echo "Installing and registering Logtalk online documentation..." 17 17 18 if [ "$1" = configure ]; then19 if which install-docs > /dev/null 2>&1; then18 if [ "$1" = "configure" ] ; then 19 if which install-docs > /dev/null 2>&1 ; then 20 20 install-docs -i /usr/share/doc-base/logtalk-docs 21 21 fi … … 26 26 echo "Adding menu entries for some of the Logtalk integration scripts..." 27 27 28 if test -x /usr/bin/update-menus; then28 if [ -x /usr/bin/update-menus ] ; then 29 29 update-menus 30 30 fi -
trunk/scripts/debian/postrm
r4102 r4227 1 #!/bin/ bash1 #!/bin/sh 2 2 3 3 ## ================================================================ … … 10 10 echo "Removing menu entries for some of the Logtalk integration scripts..." 11 11 12 if test -x /usr/bin/update-menus; then12 if [ -x /usr/bin/update-menus ] ; then 13 13 update-menus 14 14 fi -
trunk/scripts/debian/prerm
r4102 r4227 1 #!/bin/ bash1 #!/bin/sh 2 2 3 3 ## ================================================================ … … 11 11 echo "Uninstalling and de-registering Logtalk online documentation..." 12 12 13 if [ "$1" = remove -o "$1" = upgrade ]; then14 if which install-docs > /dev/null 2>&1; then13 if [ "$1" = "remove" ] || [ "$1" = "upgrade" ] ; then 14 if which install-docs > /dev/null 2>&1 ; then 15 15 install-docs -r logtalk-docs 16 16 fi
