diff options
author | bsam <bsam@FreeBSD.org> | 2014-04-11 22:00:30 +0800 |
---|---|---|
committer | bsam <bsam@FreeBSD.org> | 2014-04-11 22:00:30 +0800 |
commit | 7cc17785deca2781f9d1856cd65dadf852c5399b (patch) | |
tree | 8e2c9f6342f1b071a8e3670a6713bb4c1bdadec6 /print | |
parent | 6e71334146ae1e2ed9e4d15f39813b8f253bda8b (diff) | |
download | freebsd-ports-gnome-7cc17785deca2781f9d1856cd65dadf852c5399b.tar.gz freebsd-ports-gnome-7cc17785deca2781f9d1856cd65dadf852c5399b.tar.zst freebsd-ports-gnome-7cc17785deca2781f9d1856cd65dadf852c5399b.zip |
A try (since I can't reproduce it at CURRENT) to fix "make index":
include USES+=compiler unconditionally.
Reported by: Poersnap buildbox
Diffstat (limited to 'print')
-rw-r--r-- | print/cups-base/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print/cups-base/Makefile b/print/cups-base/Makefile index 29c5460fd55c..b14b08c13b62 100644 --- a/print/cups-base/Makefile +++ b/print/cups-base/Makefile @@ -51,19 +51,19 @@ CUPSSYSGRP= wheel GROUPS= cups USERS= cups +USES+= compiler + # UNIQUENAME must be set before bsd.port.pre.mk so OPTIONSFILE can be included .if defined(CUPS_CLIENT) PORTREVISION= 0 LICENSE= LGPL21 CUPS_SUFFIX= -client OPTIONS_DEFINE= GNUTLS -USES+= compiler .elif defined(CUPS_IMAGE) PORTREVISION= 0 CUPS_SUFFIX= -image LICENSE= LGPL21 OPTIONS_DEFINE= GNUTLS -USES+= compiler .else INSTALLS_ICONS= yes PORTREVISION= 0 |