>
> >  Sure.  Here is the info:
>
> > SHELL=/bin/bash
> > SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-comments:monitor
> > +++
>
> It is already bash as I expected.

Please check which shell is associated with /bin/sh. Maybe there are
different shells linked to sh in different mac versions.

Gnu make seems to have a bug with the shell variable, as I have see
already in windows.
Even when setting SHELL=cmd.exe in the makefile an other shell
(sh.exe) is used if sh.exe found in the path.

Also in a unix shell (tested in ubuntu) the SHELL variable of the
shell is not used by gnu make.

You need a file test_make with following content:

all:
        @echo ${SHELL}

(the second line have to start with a tab and no white spaces)

Then run the following commands:

$ set | grep SHELL
SHELL=/bin/bash
SHELLOPTS=braceexpand:emacs:hashall:histexpand:history:interactive-
comments:monitor
$ make -f test_make
/bin/sh

Thomas

-- 
You received this message because you are subscribed to the Google Groups 
"Hugin and other free panoramic software" group.
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at http://groups.google.com/group/hugin-ptx

Reply via email to