diff options
| author | Bill Fenner <fenner@FreeBSD.org> | 2005-10-11 15:43:06 +0000 |
|---|---|---|
| committer | Bill Fenner <fenner@FreeBSD.org> | 2005-10-11 15:43:06 +0000 |
| commit | 811ea76e55ef9d51b42d5d53c3ae9418ba66389c (patch) | |
| tree | c9ea58bb3ba211dcd5bafaa74390e4f4893e3189 | |
| parent | Fix MASTER_SITE I botched in the previous commit (diff) | |
Add quoting back to DEPRECATED, to combat the extra set of quotes that
the check-deprecated target uses. This results in bizarre quoting like
echo """Incomplete pkg-plist (port installs into nonstandard perl directory)""."
but that's life in bsd.port.mk land for now.
| -rw-r--r-- | devel/hs-uni/Makefile | 2 | ||||
| -rw-r--r-- | japanese/weblint97/Makefile | 2 | ||||
| -rw-r--r-- | mail/mew-mule/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/devel/hs-uni/Makefile b/devel/hs-uni/Makefile index 4deb21ba2678..d14f824aab35 100644 --- a/devel/hs-uni/Makefile +++ b/devel/hs-uni/Makefile @@ -17,7 +17,7 @@ MAINTAINER= gtchask@mm.st COMMENT= A tool integration framework for Haskell, including Htk BROKEN= "Does not compile with ghc 6.4 (specifically, ghc-pkg)" -DEPRECATED= ${BROKEN} +DEPRECATED= "${BROKEN}" EXPIRATION_DATE=2005-09-22 BUILD_DEPENDS= ghc:${PORTSDIR}/lang/ghc diff --git a/japanese/weblint97/Makefile b/japanese/weblint97/Makefile index b0d5d675d350..d2931796fa16 100644 --- a/japanese/weblint97/Makefile +++ b/japanese/weblint97/Makefile @@ -18,7 +18,7 @@ COMMENT= An internationalized HTML checker with japanese message(EUC-JP) RUN_DEPENDS= ${SITE_PERL}/jcode.pl:${PORTSDIR}/japanese/jcode.pl BROKEN= "Incomplete pkg-plist (port installs into nonstandard perl directory)" -DEPRECATED= ${BROKEN} +DEPRECATED= "${BROKEN}" EXPIRATION_DATE=2005-09-22 WRKSRC= ${WRKDIR}/weblint-97 diff --git a/mail/mew-mule/Makefile b/mail/mew-mule/Makefile index 66ce6b11b067..2602853fe155 100644 --- a/mail/mew-mule/Makefile +++ b/mail/mew-mule/Makefile @@ -12,7 +12,7 @@ COMMENT= Message interface to Emacs Window for mule MASTERDIR= ${.CURDIR}/../mew BROKEN= "Incorrect pkg-plist (removes directories not installed by this port)" -DEPRECATED= ${BROKEN} +DEPRECATED= "${BROKEN}" EXPIRATION_DATE=2005-09-22 # set emacs port |
