summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2023-09-12 20:15:36 +0000
committerKarl Berry <karl@freefriends.org>2023-09-12 20:15:36 +0000
commitb3b4281aff18f35e1bc8fc6a639ea1949c1e392c (patch)
tree17ae34b4cea37f30ec11e2118f0630b40f18ae2c /Build
parent6f1ac555187b9d372b0427ba6928460bd32f306f (diff)
pdfjam (12sep23)
git-svn-id: svn://tug.org/texlive/trunk@68257 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rwxr-xr-xBuild/source/texk/texlive/linked_scripts/pdfjam/pdfjam4
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/pdfjam/pdfjam b/Build/source/texk/texlive/linked_scripts/pdfjam/pdfjam
index 455d2cbeca1..cd6ea75cbe3 100755
--- a/Build/source/texk/texlive/linked_scripts/pdfjam/pdfjam
+++ b/Build/source/texk/texlive/linked_scripts/pdfjam/pdfjam
@@ -1,5 +1,5 @@
#!/bin/sh
-version=3.07
+version=3.08
#########################################################################
## ##
## pdfjam: A shell-script interface to the "pdfpages" LaTeX package ##
@@ -943,7 +943,7 @@ fi
## A function to check if using non-Cygwin "${latex}" from Cygwin
using_non_cygwin_latex_from_cygwin () {
if [ -z "${__cache__using_non_cygwin_latex_from_cygwin}" ]; then
- if [ "$(uname -o)" = "Cygwin" ] \
+ if uname | grep -q CYGWIN \
&& "${latex}" -version | head -1 | grep -qv Cygwin; then
__cache__using_non_cygwin_latex_from_cygwin=0
else