32

When I install a port, I am often presented with a menu screen to select configuration options. If I'm going to install a really big package with lots of dependencies, that will be extremely inconvenient. Is there a make flag for accepting the default answers for all such prompts?

3 Answers 3

25

Probably BATCH, described in ports(7), is what you're looking for:

# cd /usr/ports/sysutils/screen # export BATCH=yes # make rmconfig # make install clean (no configuration menu is displayed) 

make rmconfig removes OPTIONS config for this port, and you can use it to remove OPTIONS which were previously saved when you configured and installed screen(1) the first time. OPTIONS are stored to directory which is specifed via PORT_DB_DIR (defaults to /var/db/ports).

If you use bash, BATCH can be set automatically every time you log in:

# echo 'export BATCH=yes' >> ~/.bash_profile 
4
  • 15
    I prefer make config-recursive && make install clean, as it gives you all config-dialogs upfront while the actual installation will likely work unattended. Commented Sep 16, 2012 at 11:56
  • Also, to shorten your workload required for configuration, it's often a reasonable idea to exclusively look at the options that are active by default and just consider deactivating any of those. Commented Sep 16, 2012 at 12:01
  • 9
    Also please run make config-recursive multiple times until you stop getting new options (i.e. at least twice). Any time you change an option, it may bring in another dependency that has yet more options. Commented Mar 6, 2013 at 15:22
  • export will only work on sh which is not the FreeBSD default shell Commented Aug 2, 2017 at 18:10
25

I think it's worth mentioning that you might not always want to do this. I seem to remember, for instance, needing to config emacs to add xft support. If you want to bypass the prompts for a single build,

make install clean BATCH=yes 

will work as well.

2
  • somehow works better than putting "BATCH=yes" in the front of make. Thanks. Commented Jan 18, 2012 at 0:28
  • Worth noting that make install clean BATCH= has the same effect, as according to the manual for ports(7), it must only be defined. It can be set to anything or nothing at all Commented Jun 26, 2018 at 15:28
21

This doesn't automatically accept defaults like you're asking, but I like the "make config-recursive" method which runs you through any options for the port you want as well as options for all dependencies. You don't have to change anything if you don't want to, but you go through all selection screens at once rather than whenever the building process arrives at them.

Once that's done, your "make install clean" should go pretty much unattended.

2
  • 5
    As I said on @Yasir's post--make sure to run this multiple times. If you change an option which brings in another dependency, if that dependency has options to configure you won't touch it until the next run of make config-recursive. Commented Mar 6, 2013 at 15:23
  • Personally think this should be the accepted answer. Commented Dec 24, 2016 at 23:59

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.