How to compile program with custom option?

Try this snippet in your /etc/make.conf:

Code:
.if ${.CURDIR:M*/multimedia/ffmpeg}
CONFIGURE_ARGS+=--disable-asm
.endif
 
Back
Top