summaryrefslogtreecommitdiff
path: root/support/pdfjam
diff options
context:
space:
mode:
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