From patchwork Wed Sep 16 11:51:33 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: heinzm@sourceware.org X-Patchwork-Id: 47953 Received: from hormel.redhat.com (hormel1.redhat.com [209.132.177.33]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n8GBpmir025704 for ; Wed, 16 Sep 2009 11:51:48 GMT Received: from listman.util.phx.redhat.com (listman.util.phx.redhat.com [10.8.4.110]) by hormel.redhat.com (Postfix) with ESMTP id C0847618C85; Wed, 16 Sep 2009 07:51:47 -0400 (EDT) Received: from int-mx01.intmail.prod.int.phx2.redhat.com (nat-pool.util.phx.redhat.com [10.8.5.200]) by listman.util.phx.redhat.com (8.13.1/8.13.1) with ESMTP id n8GBpkOJ021087 for ; Wed, 16 Sep 2009 07:51:46 -0400 Received: from mx1.redhat.com (ext-mx10.extmail.prod.ext.phx2.redhat.com [10.5.110.14]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n8GBpkfV013931 for ; Wed, 16 Sep 2009 07:51:46 -0400 Received: from sourceware.org (sourceware.org [209.132.176.174]) by mx1.redhat.com (8.13.8/8.13.8) with SMTP id n8GBpXl4000644 for ; Wed, 16 Sep 2009 07:51:33 -0400 Received: (qmail 17517 invoked by uid 9450); 16 Sep 2009 11:51:33 -0000 Date: 16 Sep 2009 11:51:33 -0000 Message-ID: <20090916115133.17515.qmail@sourceware.org> From: heinzm@sourceware.org To: dm-cvs@sourceware.org, dm-devel@redhat.com X-RedHat-Spam-Score: -4 (RCVD_IN_DNSWL_MED) X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-Scanned-By: MIMEDefang 2.67 on 10.5.110.14 X-loop: dm-devel@redhat.com Cc: Subject: [dm-devel] dmraid/lib Makefile.in X-BeenThere: dm-devel@redhat.com X-Mailman-Version: 2.1.5 Precedence: junk Reply-To: device-mapper development List-Id: device-mapper development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dm-devel-bounces@redhat.com Errors-To: dm-devel-bounces@redhat.com CVSROOT: /cvs/dm Module name: dmraid Changes by: heinzm@sourceware.org 2009-09-16 11:51:32 Modified files: lib : Makefile.in Log message: Avoid building dmreg.o Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/dmraid/lib/Makefile.in.diff?cvsroot=dm&r1=1.3&r2=1.4 --- dm-devel mailing list dm-devel@redhat.com https://www.redhat.com/mailman/listinfo/dm-devel --- dmraid/lib/Makefile.in 2009/09/16 11:45:12 1.3 +++ dmraid/lib/Makefile.in 2009/09/16 11:51:32 1.4 @@ -8,7 +8,7 @@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ -SOURCES=\ +SOURCES = \ activate/activate.c \ activate/devmapper.c \ device/ata.c \ @@ -45,7 +45,7 @@ format/ddf/ddf1_dump.c \ format/partition/dos.c -ifeq ( "@STATIC_LINK", "no") +ifeq ("@STATIC_LINK@", "no") SOURCES += register/dmreg.c endif