diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2023-05-16 03:57:46 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2023-05-16 03:57:46 +0000 |
commit | 8b63b54d43cc9f4a3c3af406790fc6f0d86db560 (patch) | |
tree | b59c2de9e9bd0502a722dd9efc6b5645a696be8c /net/cvsync | |
parent | www/drupal10: update to 10.0.9 (diff) |
Cleanup: drop redundant DESTDIR propagation via MAKE_{ARGS,ENV}
Our framework usually DTRT; sometimes it's necessary to pass it
explicitly, e.g. for ports with USES+=qmake or which use exotic
build systems, but these are mostly staging dawn and apparently
debug leftovers, so remove them to not confuse the reader.
Diffstat (limited to 'net/cvsync')
-rw-r--r-- | net/cvsync/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/cvsync/Makefile b/net/cvsync/Makefile index c7c4e5a96298..a7fb4738e800 100644 --- a/net/cvsync/Makefile +++ b/net/cvsync/Makefile @@ -19,8 +19,7 @@ PORTDOCS= ChangeLog FAQ TODO PORTEXAMPLES= cvsync.conf cvsyncd-FreeBSD.conf \ cvsyncd-NetBSD.conf cvsyncd-OpenBSD.conf -MAKE_ENV+= DESTDIR="${STAGEDIR}" \ - PTHREAD_LIBS="-lpthread" \ +MAKE_ENV= PTHREAD_LIBS="-lpthread" \ INSTALL= \ INSTALL_BIN_OPTS="${INSTALL_PROGRAM}" \ INSTALL_MAN_OPTS="${INSTALL_MAN}" |