In Makefile.in
I see variable definition where an external variable name is enclosed between two @
symbols
# @configure_input@
package = @PACKAGE_NAME@
Where those external variables come from? Also, I couldn't find in GNU manual what does exactly enclosing a variable between two @
symbols mean? Is it something specific to Makefile.in?
Thank you.
PACKAGE_NAME
in the question? In myMakefile.am
I used@datadir@/@package_name@
, and it was substituted to${datarootdir}/@package_name@
, which is obviously not correct. – Photogenic