Can multiple make install
s cause problems for the package system?
For example:
cd /usr/ports/*/nmap && make install
cd /usr/ports/*/firefox && make install
Can multiple make install
s cause problems for the package system?
For example:
cd /usr/ports/*/nmap && make install
cd /usr/ports/*/firefox && make install
Yes, if two ports have the same dependancy, try to build it at the same time, one or both builds will fail. It's better to build ports serially (making a meta port of all the ports you want to install is a good idea if you're going to do it on several machines) and run make with a
-j #
to increase concurrency where it's able .