forked from pool/groff
* Many fixes for hyphenation helping * Various build tweaks * See the NEWS file for details - New signature -> update keyring file - Remove upstream merged patches: * groff-multi-thread.patch * groff-reproducible-mdate.patch * groff-use-SDE.patch - Remove groff-1.21-groffer-libexecdir.patch as upstream redid the autotools rules and uses configure option now - Rebase patch groff-1.20.1-deunicode.patch - Rebase patch groff-1.21-CVE-2009-5081.patch - Drop patch groff-1.21-CVE-2009-5080.patch as it seems the shell script now properly safeguards against this - Rebase patch 0002-documentation-for-the-locale-keyword.patch - Recreate groff-force-locale-usage.patch for autotools buildsystem - Add patch 0004-don-t-use-usr-bin-env-in-shebang.patch - Remove groff_1.22.3-1.debian.diff and replace it with split debian patches: * bash-scripts.patch * sort-perl-hash-keys.patch - Remove not really needed patch groff-1.20.1-destbufferoverflow.patch OBS-URL: https://build.opensuse.org/package/show/M17N/groff?expand=0&rev=68
46 lines
1.4 KiB
Diff
46 lines
1.4 KiB
Diff
From b5636fe1b680fff8dbf8c2d002806f37b32a10df Mon Sep 17 00:00:00 2001
|
|
From: Colin Watson <cjwatson@debian.org>
|
|
Date: Thu, 2 Jan 2014 13:13:09 +0000
|
|
Subject: The *2graph scripts use $RANDOM, which is bash-specific
|
|
|
|
Forwarded: https://lists.gnu.org/archive/html/groff/2014-01/msg00008.html
|
|
Last-Update: 2018-03-05
|
|
|
|
Patch-Name: bash-scripts.patch
|
|
---
|
|
contrib/eqn2graph/eqn2graph.sh | 2 +-
|
|
contrib/grap2graph/grap2graph.sh | 2 +-
|
|
contrib/pic2graph/pic2graph.sh | 2 +-
|
|
3 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/contrib/eqn2graph/eqn2graph.sh b/contrib/eqn2graph/eqn2graph.sh
|
|
index 3e9c3748..454754b5 100644
|
|
--- a/contrib/eqn2graph/eqn2graph.sh
|
|
+++ b/contrib/eqn2graph/eqn2graph.sh
|
|
@@ -1,4 +1,4 @@
|
|
-#! /bin/sh
|
|
+#! /bin/bash
|
|
#
|
|
# eqn2graph -- compile EQN equation descriptions to bitmap images
|
|
#
|
|
diff --git a/contrib/grap2graph/grap2graph.sh b/contrib/grap2graph/grap2graph.sh
|
|
index 29df25bb..062f2eec 100644
|
|
--- a/contrib/grap2graph/grap2graph.sh
|
|
+++ b/contrib/grap2graph/grap2graph.sh
|
|
@@ -1,4 +1,4 @@
|
|
-#! /bin/sh
|
|
+#! /bin/bash
|
|
#
|
|
# grap2graph -- compile graph description descriptions to bitmap images
|
|
#
|
|
diff --git a/contrib/pic2graph/pic2graph.sh b/contrib/pic2graph/pic2graph.sh
|
|
index b2299148..cc92ce07 100644
|
|
--- a/contrib/pic2graph/pic2graph.sh
|
|
+++ b/contrib/pic2graph/pic2graph.sh
|
|
@@ -1,4 +1,4 @@
|
|
-#! /bin/sh
|
|
+#! /bin/bash
|
|
#
|
|
# pic2graph -- compile PIC image descriptions to bitmap images
|
|
#
|