The Apache 2 port does not copile with NOPORTDOCS=true in /etc/make.conf The error message (with make -dA) is: .. (cd /usr/ports/www/apache2/work/httpd-2.0.39; /usr/bin/env DESTDIR= EXPR_COMPAT=yes -DNOPORTDOCS PORTOBJFORMAT=elf PREFIX=/usr/local LOCALBASE=/usr/local X11BASE=/usr/X11R6 MOTIFLIB="-L/usr/X11R6/lib -lXm -lXp" LIBDIR="/usr/lib" CFLAGS="-O-pipe -march=k6" CXXFLAGS=" -O -pipe -march=k6" BSD_INSTALL_PROGRAM="install -c -s -o root -g wheel -m 555" BSD_INSTALL_SCRIPT="install -c -o root -g wheel -m 555" BSD_INSTALL_DATA="install -c -o root -g wheel -m 444" BSD_INSTALL_MAN="install -c -o root -g wheel -m 444" make -f Makefile all) env: -DNOPORTDOCS: No such file or directory *** Error code 127 Fix: change .if defined(NOPORTDOCS) MAKE_ENV+= NOPORTDOCS=yes .endif to .if defined(NOPORTDOCS) MAKE_ENV+= NOPORTDOCS=yes .endif in /usr/ports/www/apache2/Makefile How-To-Repeat: cd /usr/ports/www/apache2 make NOPORTDOCS=true
Responsible Changed From-To: freebsd-ports->perky over to the maintainer
State Changed From-To: open->closed Fixed. Thank you very much!