$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Vladimir Prus (ghost_at_[hidden])
Date: 2004-11-29 11:04:48
On Saturday 27 November 2004 00:30, 1111 wrote:
> Thank you for your advice. But it still acted just the same as if no
> <dependency> is specified at all.
Looks like a bug! I'll take care of it.
> actually I would like to know what you would do for this case, will u
> use stage rule or will u write your own actions or something for
> simple post-processing like "copying" or "zipping" etc? Would you give
> me an example?
First question is why you can't list all the things that should be installed
in one "stage" rule invocation. If that's not possible, you can try using
"alias". I have something like this in my project:
alias install : install-bin install-lib ;
stage install-bin : .......... ;
stage install-lib : ......... ;
- Volodya