I have a question about bash syntax. I am using something out of the gentoo install guide as an example
Code:
CFLAGS="-march=athlon-xp -pipe -O2"
CXXFLAGS="${CFLAGS}"
the line CXXFLAGS is supposed to have the same cflags as the above line, so why would it not be like this
what purpose do the brackets serve?