[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]
Subject: [PATCH v2 1/2] makepdf: fix shell command
The script needs bash, but calls /bin/sh, which might be (and on some
distros actually is) a completely different shell.
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
---
makeall.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/makeall.sh b/makeall.sh
index 37e6c34..186a6d1 100755
--- a/makeall.sh
+++ b/makeall.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
export SPECDOC=${SPECDOC:-`cat REVISION`}
export DATESTR=${DATESTR:-`cat REVISION-DATE`}
--
2.20.1
[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]