summarylogtreecommitdiffstats
path: root/01-package-path.patch
diff options
context:
space:
mode:
authorQuint Guvernator2020-12-13 14:21:55 +0100
committerQuint Guvernator2020-12-13 14:21:55 +0100
commitb305971946a335ee0b8bb4fbc0292a9810eb5a1d (patch)
tree70cc44f170fbe3ccfbf7db845c0fba9b1bd29dd5 /01-package-path.patch
parentee90489169a9228e865a5921ca63ba69ed37b4c8 (diff)
downloadaur-b305971946a335ee0b8bb4fbc0292a9810eb5a1d.tar.gz
4.2.10: remove helpfile and app dir patches
Diffstat (limited to '01-package-path.patch')
-rw-r--r--01-package-path.patch38
1 files changed, 0 insertions, 38 deletions
diff --git a/01-package-path.patch b/01-package-path.patch
deleted file mode 100644
index c4e5a9a3e615..000000000000
--- a/01-package-path.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-diff --git a/src/HP-15C.tcl b/src/HP-15C.tcl
-index f9957a3d809e..762d72d9ae9e 100644
---- a/HP-15C.tcl
-+++ b/HP-15C.tcl
-@@ -63,7 +63,7 @@ array set APPDATA {
- }
-
- set APPDATA(SerialNo) "$APPDATA(build)[string map {. {}} $APPDATA(version)]"
--set APPDATA(basedir) [file dirname [info script]]
-+set APPDATA(basedir) "/usr/lib/hp15c"
- set APPDATA(locale) [mclocale]
-
- # Load language according to current locale
-@@ -3399,22 +3399,7 @@ proc help { topic } {
-
- global APPDATA HP15 errorInfo
-
-- switch $topic {
-- simulator {
--# Differentiate between running from a starpack or from wish
-- if {[info exists ::starkit::topdir]} {
-- set helpdir [file dirname $::starkit::topdir]
-- } else {
-- set helpdir [file dirname $::argv0]
-- }
-- if {$helpdir eq "."} {set helpdir [pwd]}
-- set helpfile "$helpdir/doc/index.htm"
-- }
-- prgm {
-- set helpfile "$HP15(prgmdir)/$HP15(prgmname).htm"
-- }
-- }
-- catch {set helpfile [file nativename [lindex [glob "$helpfile*"] 0]]}
-+ set helpfile "/usr/share/doc/hp15c/index.htm"
-
- if {[string length $HP15(browser)] == 0} {
- set msg [mc help.nobrowser]
----