diff options
author | NIIBE Yutaka <[email protected]> | 2019-06-18 06:26:50 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2019-06-18 06:37:09 +0000 |
commit | 7a7caf4ba1c460c9c36f754fcd0ebfeb4aa5cc6a (patch) | |
tree | 23ec8446742c79a12efae0bb36d4d2cf62288612 /src | |
parent | Portability fix for PID. (diff) | |
download | libgpg-error-7a7caf4ba1c460c9c36f754fcd0ebfeb4aa5cc6a.tar.gz libgpg-error-7a7caf4ba1c460c9c36f754fcd0ebfeb4aa5cc6a.zip |
build: Take care of POSIX shell path.
* configure.ac (INSTALLSHELLPATH): New.
* src/Makefile.am: Change invocation of gpg-error-config-test.sh.
* src/gpgrt-config.in (INSTALLSHELLPATH): To be substituted.
* src/gpg-error-config-test.sh.in: Likewise.
--
GnuPG-bug-id: 4574
Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 | ||||
-rw-r--r--[-rwxr-xr-x] | src/gpg-error-config-test.sh.in (renamed from src/gpg-error-config-test.sh) | 2 | ||||
-rw-r--r-- | src/gpg-error-config.in | 2 | ||||
-rw-r--r--[-rwxr-xr-x] | src/gpgrt-config.in (renamed from src/gpgrt-config) | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 27d3dff..fb4ef48 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -338,7 +338,7 @@ gpgrt.h: gpg-error.h gpg-error-config: gpgrt-config gpg-error-config-old @echo $(ECHO_N) "Confirm gpg-error-config works... $(ECHO_C)" - @if $(srcdir)/gpg-error-config-test.sh --old-new; then \ + @if ./gpg-error-config-test.sh --old-new; then \ echo "good"; \ else \ echo "no"; \ diff --git a/src/gpg-error-config-test.sh b/src/gpg-error-config-test.sh.in index 7125e10..2a4ad7a 100755..100644 --- a/src/gpg-error-config-test.sh +++ b/src/gpg-error-config-test.sh.in @@ -1,4 +1,4 @@ -#!/bin/sh +#!@INSTALLSHELLPATH@ srcdir=${0%/*} diff --git a/src/gpg-error-config.in b/src/gpg-error-config.in index c1c771a..3b45928 100644 --- a/src/gpg-error-config.in +++ b/src/gpg-error-config.in @@ -1,4 +1,4 @@ -#!/bin/sh +#!@INSTALLSHELLPATH@ # Copyright (C) 1999, 2002, 2003 Free Software Foundation, Inc. # # This file is free software; as a special exception the author gives diff --git a/src/gpgrt-config b/src/gpgrt-config.in index 646224f..622b056 100755..100644 --- a/src/gpgrt-config +++ b/src/gpgrt-config.in @@ -1,4 +1,4 @@ -#!/bin/sh +#!@INSTALLSHELLPATH@ # Copyright (C) 2018 g10 Code GmbH # # This file is free software; as a special exception the author gives |