可以在端口目录之外的FreeBSD端口上调用make
吗?即不使用cd
命令。
要进行语境化,同时可以完成以下操作:cd /usr/ports/www/apache24 && sudo make config-recursive install distclean
,首选此类伪代码:sudo make config-recursive install distclean -p /usr/ports/www/apache24
谢谢
答案 0 :(得分:2)
这是make
的{{3}}。
-C directory Change to directory before reading the makefiles or doing any- thing else. If multiple -C options are specified, each is inter- preted relative to the previous one: -C / -C etc is equivalent to -C /etc.
所以你想用这个:
make -C /usr/ports/www/apache24 config-recursive install distclean