patch for build on Solaris (where /bin/sh is not bash)
Petr Sumbera <[email protected]>
| Newsgroups | gmane.network.slrn.user |
|---|---|
| Message-ID | <[email protected]> |
Hi,
following peace of src/Makefile.in has problem on Solaris where /bin/sh
is not bash:
installslang:
@for i in $(CONF_FILES); \
Please note, that CONF_FILES is empty.
Attached patch makes to use bash (as it's detected by configure).
Thanks,
Petr
------------------------------------------------------------------------------
makeshell.patch
(text/plain, 408 B)
--- src/Makefile.in.orig Thu Feb 26 02:35:03 2009 +++ src/Makefile.in Thu Feb 26 02:35:20 2009 @@ -81,7 +81,7 @@ #---------------------------------------------------------------------------- # Nothing below here should require changing. #---------------------------------------------------------------------------- -SHELL = /bin/sh +SHELL = @SHELL@ OBJS = @PROGRAM_OBJECTS@ OFILES = @PROGRAM_OFILES@