Skip to content

Commit 1badfd5

Browse files
committed
Accommodate a shell that is not in /bin/sh.
1 parent 6758e5a commit 1badfd5

File tree

12 files changed

+181
-156
lines changed

12 files changed

+181
-156
lines changed

ChangeLog

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2019-01-27 Bruno Haible <bruno@clisp.org>
2+
3+
Accommodate a shell that is not in /bin/sh.
4+
* Makefile.in (SHELL): Use the value found by configure.
5+
* lib/Makefile.in (SHELL): Likewise.
6+
* man/Makefile.in (SHELL): Likewise.
7+
* src/Makefile.in (SHELL): Likewise.
8+
* tests/Makefile.in (SHELL): Likewise.
9+
(check, check-extra-yes): Use SHELL to run the check-* scripts.
10+
111
2019-01-27 Bruno Haible <bruno@clisp.org>
212

313
Update after gnulib changed.

Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ mkinstalldirs = $(SHELL) @top_srcdir@/build-aux/mkinstalldirs
2727

2828
#### End of system configuration section. ####
2929

30-
SHELL = /bin/sh
30+
SHELL = @SHELL@
3131

3232
all : lib/localcharset.h force
3333
cd lib && $(MAKE) all

lib/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ mkinstalldirs = $(SHELL) @top_srcdir@/build-aux/mkinstalldirs
4747

4848
#### End of system configuration section. ####
4949

50-
SHELL = /bin/sh
50+
SHELL = @SHELL@
5151

5252
# Before making a release, change this according to the libtool documentation,
5353
# section "Library interface versions".

libcharset/ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2019-01-27 Bruno Haible <bruno@clisp.org>
2+
3+
Accommodate a shell that is not in /bin/sh.
4+
* Makefile.in (SHELL): Use the value found by configure.
5+
16
2019-01-27 Bruno Haible <bruno@clisp.org>
27

38
Fix configure (regression from 2018-09-22).

libcharset/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ mkinstalldirs = $(SHELL) @top_srcdir@/build-aux/mkinstalldirs
2828

2929
#### End of system configuration section. ####
3030

31-
SHELL = /bin/sh
31+
SHELL = @SHELL@
3232

3333
all : include/libcharset.h force
3434
cd lib && $(MAKE) all

libcharset/lib/ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2019-01-27 Bruno Haible <bruno@clisp.org>
2+
3+
Accommodate a shell that is not in /bin/sh.
4+
* Makefile.in (SHELL): Use the value found by configure.
5+
16
2018-09-22 Bruno Haible <bruno@clisp.org>
27

38
Update from gnulib. Move mapping tables into the code.

libcharset/lib/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ mkinstalldirs = $(SHELL) @top_srcdir@/build-aux/mkinstalldirs
3636
PACKAGE = @PACKAGE@
3737
VERSION = @VERSION@
3838

39-
SHELL = /bin/sh
39+
SHELL = @SHELL@
4040

4141
# Before making a release, change this according to the libtool documentation,
4242
# section "Library interface versions".

man/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ mkinstalldirs = $(SHELL) @top_srcdir@/build-aux/mkinstalldirs
2727

2828
#### End of system configuration section. ####
2929

30-
SHELL = /bin/sh
30+
SHELL = @SHELL@
3131

3232
# Used by docdir.
3333
PACKAGE = @PACKAGE@

po/ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2019-01-27 Bruno Haible <bruno@clisp.org>
2+
3+
Accommodate a shell that is not in /bin/sh.
4+
* Makefile.in.in (SHELL): Use the value found by configure.
5+
16
2017-04-16 Bruno Haible <bruno@clisp.org>
27

38
* uk.po: Fix header syntax (bug in old version of KDE Lokalize).

po/Makefile.in.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ VERSION = @VERSION@
1414
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
1515

1616
SED = @SED@
17-
SHELL = /bin/sh
17+
SHELL = @SHELL@
1818
@SET_MAKE@
1919

2020
srcdir = @srcdir@

0 commit comments

Comments
 (0)