Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: OSF test does not have -nt
- X-seq: zsh-workers 2683
- From: Zefram <zefram@xxxxxxxxxxxxxxxxx>
- To: hzoli@xxxxxxxxxx (Zoltan Hidvegi)
- Subject: Re: OSF test does not have -nt
- Date: Tue, 31 Dec 1996 12:02:32 +0000 (GMT)
- Cc: zsh-workers@xxxxxxxxxxxxxxx
- In-reply-to: <199612302010.VAA09456@xxxxxxxxxxxxxxxxx> from "Zoltan Hidvegi" at Dec 30, 96 09:10:34 pm
Zoltan Hidvegi wrote:
>On OSF/1 V2.0 test does not support the -nt operator which is used in
>the Makefile recently.
That will be difficult to work around. To directly replace it, I think
a C program would be required, unless we want to rely on Perl in the
build environment. Unfortunately this makes cross-compiling
impossible. The alternative is to modify the make variables in the
recursive make invocation, such that building an object file also
causes some signalling action to occur. Something like
EXTRA_ACTION = :
.c.o:
# (normal build rule)
@$(EXTRA_ACTION)
...
$(MAKE) $(MAKEDEFS) EXTRA_ACTION='rm -f stamp-modobjs' $$obj
...
>Also in Zefram's latest Makefile.in patch the sed in OSF/1 thinks
>that the whole CFSED variable is a too long label.
I was afraid that might happen. The solution is to put the $(CFSED)
bit into a separate file, and do `sed -f $(srcdir)/conf.sed -e
"$sed"`.
-zefram
Messages sorted by:
Reverse Date,
Date,
Thread,
Author