diff options
author | yoichi <yoichi@FreeBSD.org> | 2004-03-18 21:39:11 +0800 |
---|---|---|
committer | yoichi <yoichi@FreeBSD.org> | 2004-03-18 21:39:11 +0800 |
commit | ca080f3b280c84abd21cbb950f1c4048b7a9577d (patch) | |
tree | 82070c5d5c966ad6cea693d9e078f14de3101b7b | |
parent | e832ebc6f907439d2ec225a9d204b55392ac1c7f (diff) | |
download | freebsd-ports-gnome-ca080f3b280c84abd21cbb950f1c4048b7a9577d.tar.gz freebsd-ports-gnome-ca080f3b280c84abd21cbb950f1c4048b7a9577d.tar.zst freebsd-ports-gnome-ca080f3b280c84abd21cbb950f1c4048b7a9577d.zip |
include <...> -> include "..."
PR: ports/64393
Submitted by: Oliver Eikemeier
-rw-r--r-- | databases/bbdb-emacs20/Makefile | 2 | ||||
-rw-r--r-- | deskutils/mhc-emacs20/Makefile | 2 | ||||
-rw-r--r-- | deskutils/mhc-xemacs21-mule/Makefile | 2 | ||||
-rw-r--r-- | mail/emh-emacs20/Makefile | 2 | ||||
-rw-r--r-- | mail/emh-xemacs21-mule/Makefile | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/databases/bbdb-emacs20/Makefile b/databases/bbdb-emacs20/Makefile index e52dc6ac3330..0f3f4c56e752 100644 --- a/databases/bbdb-emacs20/Makefile +++ b/databases/bbdb-emacs20/Makefile @@ -9,4 +9,4 @@ MASTERDIR= ${.CURDIR}/../bbdb EMACS_PORT_NAME= emacs20 -.include <${MASTERDIR}/Makefile> +.include "${MASTERDIR}/Makefile" diff --git a/deskutils/mhc-emacs20/Makefile b/deskutils/mhc-emacs20/Makefile index 03f9cd36c2db..bc01d25a0021 100644 --- a/deskutils/mhc-emacs20/Makefile +++ b/deskutils/mhc-emacs20/Makefile @@ -10,4 +10,4 @@ MAINTAINER= yoichi@FreeBSD.org EMACS_PORT_NAME= emacs20 -.include <${MASTERDIR}/Makefile> +.include "${MASTERDIR}/Makefile" diff --git a/deskutils/mhc-xemacs21-mule/Makefile b/deskutils/mhc-xemacs21-mule/Makefile index da346b857f4a..30e718773522 100644 --- a/deskutils/mhc-xemacs21-mule/Makefile +++ b/deskutils/mhc-xemacs21-mule/Makefile @@ -10,4 +10,4 @@ MAINTAINER= yoichi@FreeBSD.org EMACS_PORT_NAME= xemacs21-mule -.include <${MASTERDIR}/Makefile> +.include "${MASTERDIR}/Makefile" diff --git a/mail/emh-emacs20/Makefile b/mail/emh-emacs20/Makefile index 52b53d77a8aa..f7523f56d2ba 100644 --- a/mail/emh-emacs20/Makefile +++ b/mail/emh-emacs20/Makefile @@ -9,4 +9,4 @@ MASTERDIR= ${.CURDIR}/../emh EMACS_PORT_NAME= emacs20 -.include <${MASTERDIR}/Makefile> +.include "${MASTERDIR}/Makefile" diff --git a/mail/emh-xemacs21-mule/Makefile b/mail/emh-xemacs21-mule/Makefile index ce703de919ff..883306aa01e2 100644 --- a/mail/emh-xemacs21-mule/Makefile +++ b/mail/emh-xemacs21-mule/Makefile @@ -9,4 +9,4 @@ MASTERDIR= ${.CURDIR}/../emh EMACS_PORT_NAME= xemacs21-mule -.include <${MASTERDIR}/Makefile> +.include "${MASTERDIR}/Makefile" |