diff options
author | Brooks Davis <brooks@FreeBSD.org> | 2019-12-21 07:24:40 +0800 |
---|---|---|
committer | Brooks Davis <brooks@FreeBSD.org> | 2019-12-21 07:24:40 +0800 |
commit | 9b1a5c1c0715bf13d0e25f76a12cb6f129039350 (patch) | |
tree | 8c9765b75666794f79202f9dbcf7134c9ea89db6 /sysutils | |
parent | 1c8e0602f90eecc124ab267fc8a37276e90f69b0 (diff) | |
download | freebsd-ports-gnome-9b1a5c1c0715bf13d0e25f76a12cb6f129039350.tar.gz freebsd-ports-gnome-9b1a5c1c0715bf13d0e25f76a12cb6f129039350.tar.zst freebsd-ports-gnome-9b1a5c1c0715bf13d0e25f76a12cb6f129039350.zip |
Additional builds with with src r354909 applied.
The referenced change made NO_INSTALLLIB, NO_MAN, and NO_PROFILE into
errors causing these ports that declare them and use the FreeBSD make
infrastructure as part of their build to fail.
When the offending variables occur in a BSD Makefile, NO_MAN becomes
MAN= and NO_INSTALLLIB and NO_PROFILE become MK_INSTALLLIB=no and
MK_PROFILE=no respectively. When declared in the environment they
become WITHOUT_<FOO>.
Also GC NO_MANCOMPRESSED which doesn't do anything.
In the case of devel/libpasori, this change accomplished the same thing
as the change in r518434, but more directly (fix the Makefiles rather
than patching them after they are installed).
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/pefs-kmod/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sysutils/pefs-kmod/Makefile b/sysutils/pefs-kmod/Makefile index c4c93885c97c..46ea61152a16 100644 --- a/sysutils/pefs-kmod/Makefile +++ b/sysutils/pefs-kmod/Makefile @@ -20,8 +20,7 @@ ONLY_FOR_ARCHS_REASON= untested on any other arch USES= kmod uidfix MAKE_JOBS_UNSAFE=yes -MAKE_ENV= BINDIR="${PREFIX}/sbin" MANDIR="${MANPREFIX}/man/man" \ - NO_MANCOMPRESS= +MAKE_ENV= BINDIR="${PREFIX}/sbin" MANDIR="${MANPREFIX}/man/man" OPTIONS_DEFINE= AESNI OPTIONS_DEFAULT= |