From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1946 invoked by alias); 12 Sep 2007 20:53:01 -0000 Received: (qmail 1936 invoked by uid 22791); 12 Sep 2007 20:53:01 -0000 X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 12 Sep 2007 20:52:57 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.1/8.13.1) with ESMTP id l8CKqtZP029826 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 12 Sep 2007 16:52:55 -0400 Received: from pobox.toronto.redhat.com (pobox.toronto.redhat.com [172.16.14.4]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id l8CKqs1r001944 for ; Wed, 12 Sep 2007 16:52:55 -0400 Received: from toddy.toronto.redhat.com (toddy.toronto.redhat.com [172.16.14.87]) by pobox.toronto.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id l8CKqsn1006894 for ; Wed, 12 Sep 2007 16:52:54 -0400 Message-ID: <46E851A6.7090000@redhat.com> Date: Wed, 12 Sep 2007 20:53:00 -0000 From: Joshua Sumali User-Agent: Thunderbird 2.0.0.4 (X11/20070615) MIME-Version: 1.0 To: mauve-patches@sources.redhat.com Subject: FYI: Makefile and configure fix References: <46A65505.1090508@redhat.com> In-Reply-To: <46A65505.1090508@redhat.com> Content-Type: multipart/mixed; boundary="------------070805050509010200040707" X-IsSubscribed: yes Mailing-List: contact mauve-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: mauve-patches-owner@sourceware.org X-SW-Source: 2007/txt/msg00055.txt.bz2 This is a multi-part message in MIME format. --------------070805050509010200040707 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 437 This patch is to fix the 'make dist' target. It now works and produces a mauve dated dist tarball. 2007-09-12 Joshua Sumali * Makefile.am: Added source files for 'make dist' target. * Makefile.in: Regenerated. * aclocal.m4: Regenerated. * configure.in: Added tar-pax check, needed for long filenames included in the dist tarball. * configure: Regenerated. --------------070805050509010200040707 Content-Type: text/x-patch; name="mauve-dist.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="mauve-dist.diff" Content-length: 744 --- mauve.clean/Makefile.am 2007-09-12 16:23:35.000000000 -0400 +++ mauve/Makefile.am 2007-09-12 16:42:51.000000000 -0400 @@ -9,6 +9,10 @@ check_DATA = $(STAMP) +EXTRA_DIST = Harness.java RunnerProcess.java gnu junit + +VERSION = ${shell date +%F} + harness_files = \ Harness.java \ RunnerProcess.java \ --- mauve.clean/configure.in 2007-09-12 16:23:35.000000000 -0400 +++ mauve/configure.in 2007-09-12 16:42:52.000000000 -0400 @@ -1,6 +1,7 @@ dnl Process this with autoconf to create configure -AC_INIT(gnu/testlet/Testlet.java) -AM_INIT_AUTOMAKE(mauve, 0.0) +AC_INIT([mauve],[0.0]) +AC_CONFIG_SRCDIR([gnu/testlet/Testlet.java]) +AM_INIT_AUTOMAKE([tar-pax]) dnl Check path and file separator types ACX_CHECK_PATHNAME_STYLE_DOS --------------070805050509010200040707--