- 论坛徽章:
- 0
|
回复 1# linyunxian
参见
lhttp://www.mail-archive.com/help-make@gnu.org/msg06714.html
这网站ms被墙了,所以贴一下内容
Re: Regarding running shell script from Makefile
Paul Smith
Fri, 11 May 2007 12:04:22 -0700
On Fri, 2007-05-11 at 07:15 -0700, gshejin wrote:
> I am having a scenerio where in I have to execute a shell script from
> the Makefile. If I am exporting the path where the shell script is
> located in the PATH variable and then run the make the script get's
> executed. But if i am not exporting the path in the shell and then run
> the make it throws an error, some thing like this
First, when in the world is PATH not exported? I've never run across an
environment where PATH wasn't exported.
Anyway. When you say "execute a shell script", do you mean using the
$(shell ...) function, or do you mean a normal command script make
invokes to update a rule?
If the latter, then exporting PATH in your makefile will definitely
work. If the former, then it won't be enough, because variables that
are marked exported inside the makefile are only exported to command
scripts, not $(shell ...) functions.
To work around this you can use:
$(shell PATH="$(PATH)" <command>
http://www.mail-archive.com/uclinux-dev@uclinux.org/msg01073.html
[uClinux-dev] [OT] PATH used by make $(shell ) function
John Williams
Wed, 16 May 2007 23:37:03 -0700
Hi,
A bit OT but coming in the context of uClinux-dist, so I'll try here first 
Is it possible to modify the PATH used by make's $(shell function)?
The obvious construct
PATH=$(PATH):/path/to/add
export PATH
foo=$(shell mytool)
where mytool lives in /path/to/add, doesn't work
The only way I've got this to fly is like so:
PATH=$(PATH):/path/to/add
foo=$(shell PATH=$(PATH) mytool)
but it's a bit ugly.
Reading the ake manual it's clear that 'export' is intended to send environment variables to sub-makes, but it's silent about how to influence the environment of the $(shell) function. All my experiments here suggest that $(shell) executes with the environment of the shell that invoked make, and there's nothing you can do about that.
cheers,
John
结论就是通过shell函数方式调用,PATH变量是不会被继承的 |
|