diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2009-03-01 07:05:52 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2009-03-01 07:05:52 +0000 |
commit | 92ad0439a8129dea260760ef5cc1d60da44f544d (patch) | |
tree | f353989b6623f7193f3b53fd23b3b638ec1a3203 | |
parent | 64bc5d874f1bbad1e1d96a85734389baedd61a98 (diff) |
Don't hardcode /bin/sh as shell
svn path=/trunk/; revision=7928
-rw-r--r-- | po/ChangeLog | 7 | ||||
-rw-r--r-- | po/Makefile.in.in | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/po/ChangeLog b/po/ChangeLog index 0a6bd5d75..1a55d1543 100644 --- a/po/ChangeLog +++ b/po/ChangeLog @@ -1,3 +1,10 @@ +2009-03-01 Matthias Clasen <mclasen@redhat.com> + + Bug 573527 – Wrong shell to run config.status in Makefile.in.in + + * Makefile.in.in: Don't hardcode /bin/sh as shell. + Reported by Loïc Minier + 2009-02-28 Gabor Kelemen <kelemeng@gnome.hu> * hu.po: Translation updated. diff --git a/po/Makefile.in.in b/po/Makefile.in.in index 495483812..1686b0f75 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -16,7 +16,7 @@ GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ PACKAGE = @PACKAGE@ VERSION = @VERSION@ -SHELL = /bin/sh +SHELL = @SHELL@ @SET_MAKE@ srcdir = @srcdir@ |