diff options
author | sumikawa <sumikawa@FreeBSD.org> | 1999-09-09 23:29:05 +0800 |
---|---|---|
committer | sumikawa <sumikawa@FreeBSD.org> | 1999-09-09 23:29:05 +0800 |
commit | 57bb54715f380a95e85aa79aedae5bf4069f2f75 (patch) | |
tree | 694ddaebee100e21ef3753d88eb6919c04c40b0c /japanese | |
parent | 293e7e6d5109d6ace2fc36bfffadf60f51589fd5 (diff) | |
download | freebsd-ports-gnome-57bb54715f380a95e85aa79aedae5bf4069f2f75.tar.gz freebsd-ports-gnome-57bb54715f380a95e85aa79aedae5bf4069f2f75.tar.zst freebsd-ports-gnome-57bb54715f380a95e85aa79aedae5bf4069f2f75.zip |
- changed = to ?= or += in some of the variables in palm/jpilot
instead of assigning variables after the .include statement.
Suggested by: asami
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/jpilot/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/japanese/jpilot/Makefile b/japanese/jpilot/Makefile index 6b1890f89db5..4667e9910ab3 100644 --- a/japanese/jpilot/Makefile +++ b/japanese/jpilot/Makefile @@ -10,11 +10,10 @@ MASTERDIR= ${.CURDIR}/../../palm/jpilot COMMENT= ${.CURDIR}/pkg/COMMENT PKGNAME= ja-jpilot-0.93.1 - -.include "${MASTERDIR}/Makefile" - -CATEGORIES= japanese palm +CATEGORIES= japanese MAINTAINER= sumikawa@kame.net -CONFIGURE_ARGS+= --with-japanese +CONFIGURE_ARGS= --with-japanese + +.include "${MASTERDIR}/Makefile" |