- Fix 'make install' when built with clang To build port with clang, I have following lines in /etc/make.conf: CC= /usr/bin/clang CPP= /usr/bin/clang-cpp CXX= /usr/bin/clang++ The installation failed when it tries to copy *.so.1 from ${BINS}, which should be either ${DIST}/${OPSYS}${OSREL}_OPT.OBJ or ${DIST}/${OPSYS}${OSREL}_DBG.OBJ. However, it's actually ${DIST}/${OPSYS}${OSREL}_clang_OPT.OBJ if DEBUG option is off. This patch simply sets COMPILER_TAG empty to avoid such condition. Port maintainer (gecko@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: SVN)
Responsible Changed From-To: freebsd-ports-bugs->gecko Over to maintainer (via the GNATS Auto Assign Tool)
State Changed From-To: open->closed Should be fixed in r305684