From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14780 invoked by alias); 14 Dec 2010 23:23:46 -0000 Received: (qmail 14752 invoked by uid 9699); 14 Dec 2010 23:23:45 -0000 Date: Tue, 14 Dec 2010 23:23:00 -0000 Message-ID: <20101214232345.14750.qmail@sourceware.org> From: mornfall@sourceware.org To: lvm-devel@redhat.com, lvm2-cvs@sourceware.org Subject: LVM2/test Makefile.in Mailing-List: contact lvm2-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: lvm2-cvs-owner@sourceware.org X-SW-Source: 2010-12/txt/msg00034.txt.bz2 CVSROOT: /cvs/lvm2 Module name: LVM2 Changes by: mornfall@sourceware.org 2010-12-14 23:23:45 Modified files: test : Makefile.in Log message: Fix sed substitution in copying tests to builddir (test/Makefile.in). Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/test/Makefile.in.diff?cvsroot=lvm2&r1=1.48&r2=1.49 --- LVM2/test/Makefile.in 2010/12/14 17:38:42 1.48 +++ LVM2/test/Makefile.in 2010/12/14 23:23:45 1.49 @@ -93,7 +93,7 @@ @if test "$(srcdir)" != . ; then \ echo "Copying tests to builddir."; \ cp $(SUPPORT) .; \ - for f in $(RUN); do cp $$f `echo $$f | sed -e s,$(srcdir)/,,g`; done; \ + for f in $(RUN); do cp $$f `echo $$f | sed -e s,^$(srcdir)/,,`; done; \ fi Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status