Re: [lfs-dev] SHELL in Makefiles from svn check-out

2012-01-07 Thread Pierre Labastie
Le 07/01/2012 18:47, Bruce Dubbs a écrit : > Pierre Labastie wrote: >> Would it be possible to add SHELL = /bin/bash in the >> header of the Makefile ? (same in BLFS and HLFS). the git >> CLFS Makefile has the line SHELL=/bin/bash > I did that for LFS/BLFS. I don't make changes to HLFS. > > --

Re: [lfs-dev] SHELL in Makefiles from svn check-out

2012-01-07 Thread Bruce Dubbs
Pierre Labastie wrote: > Hi, > > In the book sources retrieved from the subversion repository, > there is a Makefile, which has non POSIX constructs, e.g.: > > $(Q)rm -f $(RENDERTMP)/lfs-{full,html,pdf}.xml # no {} in POSIX > > or > $(Q)if [ "x$(MAKETAR)" == "x" ]; then # no ==

[lfs-dev] SHELL in Makefiles from svn check-out

2012-01-07 Thread Pierre Labastie
Hi, In the book sources retrieved from the subversion repository, there is a Makefile, which has non POSIX constructs, e.g.: $(Q)rm -f $(RENDERTMP)/lfs-{full,html,pdf}.xml # no {} in POSIX or $(Q)if [ "x$(MAKETAR)" == "x" ]; then # no == in POSIX. use simple '='