[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
how to use 'tcl' as SHELL?
From: |
Rodrigo Canellas |
Subject: |
how to use 'tcl' as SHELL? |
Date: |
Mon, 21 Jul 2008 13:14:00 -0300 |
User-agent: |
Thunderbird 2.0.0.14 (X11/20080505) |
Hi,
I read in
http://www.gnu.org/software/make/manual/make.html#Choosing-the-Shell how
to set a new shell to be used in a 'Makefile', but it is not working for
me, as in the example:
"
SHELL=/usr/bin/tclsh
a:
@puts "hello" ; \
set x " and goodbye" ; \
puts $$x ;
b:
puts "hello" ; \
set x " and goodbye" ; \
puts $$x ;
"
If I try 'make a', the output is the 'tclsh' prompt, I mean :
%
I I try 'make b', the output is:
puts "hello" ; \
set x " and goodbye" ; \
puts $x ;
%
Does anyone know how can I do it?
Thanks a lot!
--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
- how to use 'tcl' as SHELL?,
Rodrigo Canellas <=