diff options
author | dillo <dillo@pkgsrc.org> | 2007-03-22 08:19:01 +0000 |
---|---|---|
committer | dillo <dillo@pkgsrc.org> | 2007-03-22 08:19:01 +0000 |
commit | 9760140bb6877ff7364f5c41f5f0dc1a14da1b75 (patch) | |
tree | b73afea7db00598e5f79ea8604d20c4bb5b98b1b /print | |
parent | c8a1c1a4a1cc66153d90ac4bc4036783f952630c (diff) | |
download | pkgsrc-9760140bb6877ff7364f5c41f5f0dc1a14da1b75.tar.gz |
Don't try to install non-existent files -- they were already removed
from the PLIST.
Diffstat (limited to 'print')
-rw-r--r-- | print/cups/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print/cups/Makefile b/print/cups/Makefile index 005817f1d7d..fae922269e6 100644 --- a/print/cups/Makefile +++ b/print/cups/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.118 2007/03/19 14:46:35 joerg Exp $ +# $NetBSD: Makefile,v 1.119 2007/03/22 08:19:01 dillo Exp $ # # The CUPS author is very good about taking back changes into the main # CUPS distribution. The correct place to send patches or bug-fixes is: @@ -141,7 +141,7 @@ post-extract: post-install: ${INSTALL_DATA_DIR} ${DOCDIR} - for file in CGI.txt ENCRYPTION.txt LICENSE.txt README.txt; do \ + for file in LICENSE.txt README.txt; do \ ${INSTALL_DATA} ${WRKSRC}/$${file} ${DOCDIR}/$${file}; \ done ${INSTALL_DATA_DIR} ${EGDIR} |