diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2007-07-26 17:19:24 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2007-07-26 17:19:24 +0000 |
commit | bfa3388f8f0593945fcb2d41fc872125d42b6d80 (patch) | |
tree | 16719260ccf76c9a627a58cfbc55df66a68ef41f | |
parent | 99007900ceb15a2d0dab127f80632e7d6e80663d (diff) | |
download | freebsd-ports-bfa3388f8f0593945fcb2d41fc872125d42b6d80.zip |
- Correctly fix schg flag and make clean problem. It is ${WRKDIR}/var/empty
that has the flag set and that directory is not under ${WRKSRC}
PR: ports/114878
Submitted by: Scot Hetzel <swhetzel at gmail.com
-rw-r--r-- | misc/compat4x/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/compat4x/Makefile b/misc/compat4x/Makefile index fd46e44e880d..3bfcf57a41db 100644 --- a/misc/compat4x/Makefile +++ b/misc/compat4x/Makefile @@ -148,6 +148,6 @@ post-install: install-ldconfig-file @${CAT} ${PKGMESSAGE} pre-clean: - @[ -w ${WRKSRC} ] && chflags -R noschg ${WRKSRC} || ${TRUE} + @[ -w ${WRKDIR}/var ] && chflags -R noschg ${WRKDIR}/var || ${TRUE} .include <bsd.port.post.mk> |