Hi I have a question about src.conf for buildworld: I would like to exclude building a number of modules which I do not need in world, so I cretated a file modex.conf in a new directory /etc/make. Then, in makefile.conf I tried placing: .include "/etc/make/modex.conf" WITHOUT_MODULES= "/etc/make/modex.conf" But neither works and the modules are still built. What would be the correct syntax for such a file? Thanks. -- View this message in context: http://freebsd.1045724.n5.nabble.com/Question-regarding-etc-src-conf-tp5769677.html Sent from the freebsd-stable mailing list archive at Nabble.com.
MODULES_OVERRIDE=ath ath_pci wlan ... or WITHOUT_MODULES= ... in make.conf traditionally, but should be possible with .include also. -- View this message in context: http://freebsd.1045724.n5.nabble.com/Question-regarding-etc-src-conf-tp5769677p5769711.html Sent from the freebsd-stable mailing list archive at Nabble.com.
On Sun, 16 Dec 2012 09:14:38 +0100, Beeblebrox <zaphod at berentweb.com> wrote:> Hi I have a question about src.conf for buildworld: > I would like to exclude building a number of modules which I do not need > in > world, so I cretated a file modex.conf in a new directory /etc/make. > Then, > in makefile.conf I tried placing: > .include "/etc/make/modex.conf" > WITHOUT_MODULES= "/etc/make/modex.conf" > But neither works and the modules are still built. > What would be the correct syntax for such a file? > > Thanks.Do you use /etc/makefile.conf or /etc/make.conf? I think it helps if you copy paste your files in your email. Ronald.