diff options
author | Brian Feldman <green@FreeBSD.org> | 1999-12-10 07:04:27 +0000 |
---|---|---|
committer | Brian Feldman <green@FreeBSD.org> | 1999-12-10 07:04:27 +0000 |
commit | 6ee66121d4ec68cc360f028074e1e0822cfebe3a (patch) | |
tree | 5a589a9333b8289121ea3ba4b4a14c0a620f7b84 /print | |
parent | Fix MD5 mismatch; the port compiles and runs fine. (diff) |
As per Asami's port build breakage:
Fix the BATCH=yes case. The .keep_me file was not being touched in
BATCH=yes since MAkefile.inc was only created in interactive mode,
and Makefile.inc is where .keep_me is also touched... This port
should now work for BATCH and !BATCH.
Notes
Notes:
svn path=/head/; revision=23717
Diffstat (limited to 'print')
-rw-r--r-- | print/apsfilter/Makefile | 4 | ||||
-rw-r--r-- | print/apsfilter6/Makefile | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/print/apsfilter/Makefile b/print/apsfilter/Makefile index 3a0c519e9002..72e1b52129a1 100644 --- a/print/apsfilter/Makefile +++ b/print/apsfilter/Makefile @@ -53,6 +53,10 @@ clean: .if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) .include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" .endif +.else +post-install: + @${MKDIR} ${PREFIX}/apsfilter/filter + @${TOUCH} ${PREFIX}/apsfilter/filter/.keep_me .endif .include <bsd.port.mk> diff --git a/print/apsfilter6/Makefile b/print/apsfilter6/Makefile index 3a0c519e9002..72e1b52129a1 100644 --- a/print/apsfilter6/Makefile +++ b/print/apsfilter6/Makefile @@ -53,6 +53,10 @@ clean: .if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) .include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" .endif +.else +post-install: + @${MKDIR} ${PREFIX}/apsfilter/filter + @${TOUCH} ${PREFIX}/apsfilter/filter/.keep_me .endif .include <bsd.port.mk> |