diff options
author | rafan <rafan@FreeBSD.org> | 2007-07-27 01:19:24 +0800 |
---|---|---|
committer | rafan <rafan@FreeBSD.org> | 2007-07-27 01:19:24 +0800 |
commit | 4dde0c66e1505f5585da0fee131f01d9d16c44f9 (patch) | |
tree | fe0b2cef0046068e317cd340a73eccf919b68740 /misc/compat4x | |
parent | d4e180d557c7884d2537212fa5f3bdf00439d66c (diff) | |
download | freebsd-ports-gnome-4dde0c66e1505f5585da0fee131f01d9d16c44f9.tar.gz freebsd-ports-gnome-4dde0c66e1505f5585da0fee131f01d9d16c44f9.tar.zst freebsd-ports-gnome-4dde0c66e1505f5585da0fee131f01d9d16c44f9.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
Diffstat (limited to 'misc/compat4x')
-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> |