diff options
author | Karl Berry <karl@freefriends.org> | 2009-03-02 17:40:39 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-03-02 17:40:39 +0000 |
commit | 4c87eac508b32a89d6725b1616b5ee68fd270c2e (patch) | |
tree | a2418c9e41b568c1db8e9324666ed2736d974fe7 /Build/source/texk/web2c/lib | |
parent | 33317ea7b0c925bdfb50d5e596ceaf0d22e49c1b (diff) |
make --enable/disable-write18 synonyms for -no/-shell-escape, for compatibility with MiKTeX
git-svn-id: svn://tug.org/texlive/trunk@12289 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/lib')
-rw-r--r-- | Build/source/texk/web2c/lib/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/web2c/lib/texmfmp.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/lib/ChangeLog b/Build/source/texk/web2c/lib/ChangeLog index cf13f906ba1..8510c986b1d 100644 --- a/Build/source/texk/web2c/lib/ChangeLog +++ b/Build/source/texk/web2c/lib/ChangeLog @@ -1,3 +1,8 @@ +2009-03-02 Karl Berry <karl@tug.org> + + * texmfmp.c (long_options): make -enable-write18 and -disable-write18 + synonyms for -shell-escape and -no-shell-escape. + 2009-02-26 Karl Berry <karl@tug.org> * texmfmp.c: Implementation of restricted shell escapes from Akira. diff --git a/Build/source/texk/web2c/lib/texmfmp.c b/Build/source/texk/web2c/lib/texmfmp.c index ed172504314..adf20fcbea9 100644 --- a/Build/source/texk/web2c/lib/texmfmp.c +++ b/Build/source/texk/web2c/lib/texmfmp.c @@ -1353,6 +1353,8 @@ static struct option long_options[] #endif /* pdfTeX */ { "shell-escape", 0, &shellenabledp, 1 }, { "no-shell-escape", 0, &shellenabledp, -1 }, + { "enable-write18", 0, &shellenabledp, 1 }, + { "disable-write18", 0, &shellenabledp, -1 }, { "shell-restricted", 0, 0, 0 }, { "debug-format", 0, &debugformatfile, 1 }, { "src-specials", 2, 0, 0 }, |