summaryrefslogtreecommitdiff
path: root/support/pdfjam
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2023-09-13 03:01:35 +0000
committerNorbert Preining <norbert@preining.info>2023-09-13 03:01:35 +0000
commitde0fb15550a55ba5685a755fec7326e21a79fccd (patch)
treed31a21d9ea35405a0482f92ff12caabd84eae9e4 /support/pdfjam
parentbecf79ac9bbdddd15ef9d66a35c6d64252a2cd46 (diff)
CTAN sync 202309130301
Diffstat (limited to 'support/pdfjam')
-rw-r--r--support/pdfjam/VERSION2
-rwxr-xr-xsupport/pdfjam/bin/pdfjam4
2 files changed, 3 insertions, 3 deletions
diff --git a/support/pdfjam/VERSION b/support/pdfjam/VERSION
index 1de2ea467f..824e1853a4 100644
--- a/support/pdfjam/VERSION
+++ b/support/pdfjam/VERSION
@@ -1 +1 @@
-This is pdfjam 3.07 \ No newline at end of file
+This is pdfjam 3.08 \ No newline at end of file
diff --git a/support/pdfjam/bin/pdfjam b/support/pdfjam/bin/pdfjam
index 455d2cbeca..cd6ea75cbe 100755
--- a/support/pdfjam/bin/pdfjam
+++ b/support/pdfjam/bin/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