Re: String equality and make
[email protected] (Paul Jarc)
| Newsgroups | gmane.comp.gnu.utils |
|---|---|
| Organization | What did you have in mind? A short, blunt, human pyramid? |
| Message-ID | <[email protected]> |
"Brian L. Troutwine" <[email protected]> wrote: > TYPE := `cat /tmp/bag_type` This uses the literal value "`cat /tmp/bag_type`"; backticks aren't special to make. You want this instead: TYPE := $(shell cat /tmp/bag_type) paul