Hi,
I have a problem running echo inside Makefile.
Here is the Makefile:
all:
        @echo "string"
        @echo -e -n "string"

The output is:
string
-e -n string

The problem is the second @echo command. It prints '-e -n' instead of
interpreting those options.
I have tested it on other comps and it works fine, so its an environment
problem in my comp.
What var or file determine this behavior?
Thanks,
Kfir

Reply via email to