Received: by mail.netbsd.org (Postfix, from userid 605) id 0995484F17; Sat, 13 Jan 2024 13:58:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3A91D84D8B for ; Sat, 13 Jan 2024 13:58:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id YSdLcc6_oXaQ for ; Sat, 13 Jan 2024 13:58:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id B75D884D2E for ; Sat, 13 Jan 2024 13:58:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A258AFA42; Sat, 13 Jan 2024 13:58:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1705154310183380" MIME-Version: 1.0 Date: Sat, 13 Jan 2024 13:58:30 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/x11/xmenu To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20240113135830.A258AFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1705154310183380 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Sat Jan 13 13:58:30 UTC 2024 Modified Files: pkgsrc/x11/xmenu: Makefile Log Message: x11/xmenu: Use INSTALL_DATA instead of _MAN To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/x11/xmenu/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1705154310183380 Content-Disposition: inline Content-Length: 708 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/xmenu/Makefile diff -u pkgsrc/x11/xmenu/Makefile:1.1 pkgsrc/x11/xmenu/Makefile:1.2 --- pkgsrc/x11/xmenu/Makefile:1.1 Sat Jan 13 13:53:23 2024 +++ pkgsrc/x11/xmenu/Makefile Sat Jan 13 13:58:30 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2024/01/13 13:53:23 gdt Exp $ +# $NetBSD: Makefile,v 1.2 2024/01/13 13:58:30 gdt Exp $ DISTNAME= xmenu-4.6.1 CATEGORIES= x11 @@ -17,7 +17,7 @@ EGDIR= ${PREFIX}/share/examples/xmenu INSTALLATION_DIRS+= ${EGDIR} post-install: - ${INSTALL_MAN} ${WRKSRC}/xmenu.sh ${DESTDIR}${EGDIR} + ${INSTALL_DATA} ${WRKSRC}/xmenu.sh ${DESTDIR}${EGDIR} .include "../../x11/libX11/buildlink3.mk" .include "../../x11/libXft/buildlink3.mk" --_----------=_1705154310183380--