diff options
| author | apb <apb@NetBSD.org> | 2006-09-29 20:08:36 +0000 |
|---|---|---|
| committer | apb <apb@NetBSD.org> | 2006-09-29 20:08:36 +0000 |
| commit | f90c5ef1d5e8a1827ba19a2bd0e28e00bd636f99 (patch) | |
| tree | 210113807145542a8f0037e2756cfbe84de0c325 /gnu/dist/gcc4/libcpp | |
| parent | a9ed4719e4e3290c9522d22d07cb97df119bb27c (diff) | |
Use ${HOST_SH} instead of the host system's /bin/sh wherever possible:
* Explicitly use $(SHELL) to run shell scripts.
* Use SHELL = @SHELL@, not SHELL = /bin/sh. @SHELL@ will be substituted
by associated configure scripts, and will actually refer to the
environment variable ${CONFIG_SHELL}.
Diffstat (limited to 'gnu/dist/gcc4/libcpp')
| -rw-r--r-- | gnu/dist/gcc4/libcpp/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/dist/gcc4/libcpp/Makefile.in b/gnu/dist/gcc4/libcpp/Makefile.in index 9336c5d3c7a..7097f40a2fa 100644 --- a/gnu/dist/gcc4/libcpp/Makefile.in +++ b/gnu/dist/gcc4/libcpp/Makefile.in @@ -129,7 +129,7 @@ $(srcdir)/config.in: @MAINT@ $(srcdir)/configure localedir.h: localedir.hs; @true localedir.hs: Makefile echo "#define LOCALEDIR \"$(localedir)\"" > localedir.new - $(srcdir)/../move-if-change localedir.new localedir.h + $(SHELL) $(srcdir)/../move-if-change localedir.new localedir.h echo timestamp > localedir.hs # Installation rules and other phony targets |
