This works:
SOMEVAR = "\# some comment" This doesn't SOMEVAR = "\# some comment" SOMEVAR += "other stuff" So my current workaround is: HASHMARK = $(shell echo "\#") SOMEVAR = "$(HASHMARK)some comment" SOMEVAR += "other stuff" Thanks. - Daniel
This works:
SOMEVAR = "\# some comment" This doesn't SOMEVAR = "\# some comment" SOMEVAR += "other stuff" So my current workaround is: HASHMARK = $(shell echo "\#") SOMEVAR = "$(HASHMARK)some comment" SOMEVAR += "other stuff" Thanks. - Daniel