How To Include Architecture in MASTERSITES

I need to be able to include either i386 or x64 in the MASTERSITES directive. Something like this:
Code:
MATERSITES= http://some.site/dist/os/FreeBSD-${ARCHITECTURE}/

How is that done?

And for future reference, where can I find a list of all the variables available in a port Makefile?
 
dave said:
I need to be able to include either i386 or x64 in the MASTERSITES directive. Something like this:
Code:
MATERSITES= http://some.site/dist/os/FreeBSD-${ARCHITECTURE}/
You were almost right: ${ARCH}.

dave said:
And for future reference, where can I find a list of all the variables available in a port Makefile?
You might want to have a look in /usr/ports/Mk.
 
Back
Top