oops, the above assignment is typed wrong (in this message not the makefile
itself :) ...
BASHLIBSCRIPTS = revisionopssingleton.sh
--
View this message in context:
http://gnu-make.2324884.n4.nabble.com/Makefile-template-target-is-not-up-to-date-when-it-has-been-performed-tp17309p17310.html
S
I have the following:
In a generic template (Makefile.rules.mak):
BUILDPATHBASHLIBSCRIPTS = $(addprefix $(BUILDPATHDIR)/, $(BASHLIBSCRIPTS))
$(BUILDPATHBASHLIBSCRIPTS): $(BUILDPATHDIR)/%: %
if test $< -nt $@; then \
cp -f $< $@ \
chmod a+rx $@; fi
In a lo
On Wed, 2016-08-17 at 06:26 +, zhi zunbao wrote:
> i wanna build a linux according to the lfs 7.7.
>
>
> afte i execute the code below:
>
> chroot "$LFS" /tools/bin/env -i \
> HOME=/root \
> TERM="$TERM" \
> PS1='\u:\w\$ ' \
> PATH
On Mon, 2016-08-22 at 06:33 -0700, Larry Wilson Sr wrote:
> I have the following:
>
> In a generic template (Makefile.rules.mak):
>
> BUILDPATHBASHLIBSCRIPTS = $(addprefix $(BUILDPATHDIR)/, $(BASHLIBSCRIPTS))
>
> $(BUILDPATHBASHLIBSCRIPTS): $(BUILDPATHDIR)/%: %
> if test $< -nt $@; then