summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2017-05-16 05:56:37 +0000
committerNorbert Preining <preining@logic.at>2017-05-16 05:56:37 +0000
commit92cf9665bfcec0b4b2252a1155a345693a0d9ee6 (patch)
treefb832bf9b55f9f44a707f3c777f552df932c2c85
parent3c6cc1ea477ddb6b1811d3587f3db5516ec65aa2 (diff)
fix plist file name
git-svn-id: svn://tug.org/texlive/trunk@44377 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl14
1 files changed, 7 insertions, 7 deletions
diff --git a/Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl b/Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl
index 05bb8333659..687800c009f 100644
--- a/Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl
+++ b/Master/tlpkg/tlpostcode/ptex2pdf-tlpost.pl
@@ -193,9 +193,9 @@ sub do_install {
# /etc/xdg/TUG/TeXworks.conf
# /etc/xdg/TeXworks.conf
# Mac:
- # $HOME/Library/Preferences/org.TUG.TeXworks.plist ??
- # $HOME/Library/Preferences/com.TeXworks.plist ??
- # /Library/Preferences/com.TUG.TeXworks.plist
+ # $HOME/Library/Preferences/org.tug.TeXworks.plist
+ # $HOME/Library/Preferences/com.TeXworks.plist
+ # /Library/Preferences/com.tug.TeXworks.plist
# /Library/Preferences/com.TeXworks.plist
# Win:
# HKEY_CURRENT_USER\Software\TUG\TeXworks
@@ -238,10 +238,10 @@ sub do_install {
$inifile = "TeXworks.ini";
} elsif ($^O eq "darwin") {
$toolsdir = $ENV{'HOME'} . "/Library/TeXworks/configuration";
- $tugdir = $ENV{'HOME'} . "/Library/Preferences"; # needs check TODO
- $inifile = "org.TUG.TeXworks.plist"; # TODO needs check
- # TODO but as we do not do anything with $tugdir/$inifile (since it
- # is a plist file, this is not a problem for now.
+ $tugdir = $ENV{'HOME'} . "/Library/Preferences";
+ $inifile = "org.tug.TeXworks.plist";
+ # Just for completeness, as we are not doing adjustments to
+ # default engines on Mac. For this plist access would ne necessary.
} else {
$toolsdir = $ENV{'HOME'} . "/.TeXworks/configuration";
my $xdgconfhome = (defined($ENV{'XDG_CONFIG_HOME'}) ? $ENV{'XDG_CONFIG_HOME'} : $ENV{'HOME'} . "/.config");