Re: buildworld: specifying an alternate make.conf
Date: Tue, 03 Oct 2023 16:42:18 UTC
Am 03.10.23 um 17:46 schrieb Dag-Erling Smørgrav: > Ede Wolf <listac@nebelschwaden.de> writes: >> $ make -D __MAKE_CONF=/data/admin/build/vbox/make.conf -j 4 buildworld > > This defines a variable with the unwieldy name > `__MAKE_CONF=/data/admin/build/vbox/make.conf` and no value. You need > to drop the -D. > > DES Hello DES, Leaving away the "-D" does not really work either: $ cd /clutter/src $ ls -la /usr/ | grep obj $ make __MAKE_CONF=/data/admin/build/vbox/make.conf -j4 buildworld -- other teminal: $ ls -l /usr/ | grep obj drwxrwxr-x 3 root wheel 3 Oct 3 18:35 obj So MAKEOBJDIRPREFIX (or src-env.conf) is still not being honored, despite being set in make.conf. Thanks Ede