From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3D60E138334 for ; Sun, 7 Apr 2019 13:56:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 180C2E0831; Sun, 7 Apr 2019 13:56:49 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DFAE3E0831 for ; Sun, 7 Apr 2019 13:56:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C6638335CCF for ; Sun, 7 Apr 2019 13:56:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 38C5A326 for ; Sun, 7 Apr 2019 13:56:45 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1554645393.42f34212fed44f783da8af3d9deb230dbef9fa9f.soap@gentoo> Subject: [gentoo-commits] proj/ufed:master commit in: / X-VCS-Repository: proj/ufed X-VCS-Files: Makefile.am configure.ac X-VCS-Directories: / X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 42f34212fed44f783da8af3d9deb230dbef9fa9f X-VCS-Branch: master Date: Sun, 7 Apr 2019 13:56:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e3c6bca6-5f42-4fd4-9505-e9440afe38f6 X-Archives-Hash: e0ed1d097e9ddbdecfd236b8d2ac2f9c commit: 42f34212fed44f783da8af3d9deb230dbef9fa9f Author: David Seifert gentoo org> AuthorDate: Sun Apr 7 13:56:33 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Apr 7 13:56:33 2019 +0000 URL: https://gitweb.gentoo.org/proj/ufed.git/commit/?id=42f34212 Fix `make distcheck` Signed-off-by: David Seifert gentoo.org> Makefile.am | 14 ++++++-------- configure.ac | 2 +- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/Makefile.am b/Makefile.am index f8f5999..3cc209d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,27 +20,25 @@ noinst_HEADERS = \ ufed-curses-globals.h \ ufed-curses-help.h \ ufed-curses-types.h - -dist_man_MANS = ufed.8 + +man_MANS = ufed.8 EXTRA_DIST = ufed.pl.in ufed.8.in +CLEANFILES = $(sbin_SCRIPTS) $(man_MANS) + ufed: $(top_srcdir)/ufed.pl.in - cd $(top_srcdir) && \ rm -f ufed.tmp && \ $(SED) \ -e 's|XX_PACKAGE_VERSION[@]|$(PACKAGE_VERSION)|g' \ -e 's|XX_PERL[@]|$(PERL)|g' \ -e 's|XX_pkglibexecdir[@]|$(pkglibexecdir)|g' \ -e 's|XX_perldir[@]|$(perldir)|g' \ - ufed.pl.in >ufed.tmp && \ - chmod +x ufed.tmp && \ + $(top_srcdir)/ufed.pl.in >ufed.tmp && \ mv ufed.tmp ufed ufed.8: $(top_srcdir)/ufed.8.in - cd $(top_srcdir) && \ rm -f ufed.8.tmp && \ $(SED) \ -e 's|@GENTOO_PORTAGE_EPREFIX@|$(E_PREFIX)|g' \ - ufed.8.in >ufed.8.tmp && \ - chmod +x ufed.8.tmp && \ + $(top_srcdir)/ufed.8.in >ufed.8.tmp && \ mv ufed.8.tmp ufed.8 diff --git a/configure.ac b/configure.ac index 736d06a..a8eda7f 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ([2.69]) AC_INIT([ufed],[git],[https://bugs.gentoo.org/]) -AM_INIT_AUTOMAKE([foreign subdir-objects]) +AM_INIT_AUTOMAKE([1.14 -Wall foreign dist-bzip2 no-dist-gzip subdir-objects]) AC_CONFIG_SRCDIR([ufed-curses.c]) AC_CONFIG_HEADERS([config.h])