From patchwork Tue Nov 6 18:36:08 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Titus von Boxberg X-Patchwork-Id: 197532 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 499582C007D for ; Wed, 7 Nov 2012 05:37:09 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=sourceware.org; s=default; x=1352831829; h=Comment: DomainKey-Signature:Received:Received:Received:Received:Received: Received:Content-Type:MIME-Version:Content-Transfer-Encoding: Subject:Message-Id:In-Reply-To:References:User-Agent:Date:From: To:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Subscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=ilMobGwlm+yV4NACFXEfF4GHJlI=; b=pUMmecdkKV16MQu S0fWHiYCB3oQRn3gluRh5gPXzqn70K5hdJqw/Q3/weooGVlMzwRcvbrXzNsE8Nl7 4Nmbuabk7HyAMtsjovdDe0NCCGQ7HQ/6iIA6YWRCgq2whhN8tcf5BhvGMakrwRb6 b1RDLfoCvNDe5YgAqrzxwgA9katQ= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=sourceware.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:Received:Received:Content-Type:MIME-Version:Content-Transfer-Encoding:Subject:X-Mercurial-Node:Message-Id:In-Reply-To:References:User-Agent:Date:From:To:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Subscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=aECU0+jdHasfv0ni8mI1ivXGSK+OU72czdLg0qCW/HKD+r30VwrqeeGarNgSSU yePntgtOrNdSWFD4edqatwWyeLpheTXtlDYKc3fQEq4TnJDHwv9gRn1JILDrg1Au Iy5HmJyYOGNluL4zf2f4B2OYttdcHG1KgArnKHQEobxy0=; Received: (qmail 4203 invoked by alias); 6 Nov 2012 18:36:50 -0000 Received: (qmail 4096 invoked by uid 22791); 6 Nov 2012 18:36:49 -0000 X-SWARE-Spam-Status: No, hits=-2.4 required=5.0 tests=AWL, BAYES_00, KHOP_THREADED, RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from tschetwerikow.v9g.de (HELO tschetwerikow.v9g.de) (217.92.164.63) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 06 Nov 2012 18:36:40 +0000 Received: from localhost (localhost [127.0.0.1]) by tschetwerikow.v9g.de (Postfix) with ESMTP id 15F8E2836265 for ; Tue, 6 Nov 2012 19:36:39 +0100 (CET) Received: from tschetwerikow.v9g.de ([127.0.0.1]) by localhost (tschetwerikow.boxberg.lan [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id BOfTC1CKUHnw for ; Tue, 6 Nov 2012 19:36:32 +0100 (CET) Received: from tschetwerikow.boxberg.lan (localhost [IPv6:::1]) by tschetwerikow.v9g.de (Postfix) with ESMTPSA id 6AC042836243 for ; Tue, 6 Nov 2012 19:36:32 +0100 (CET) MIME-Version: 1.0 Subject: [PATCH 1 of 2] Makefile.in: Use only standard options compatible with BSD install X-Mercurial-Node: 51587db99510a9ec08f831b2ed596017efb253a5 Message-Id: <51587db99510a9ec08f8.1352226968@tschetwerikow.boxberg.lan> In-Reply-To: References: User-Agent: Mercurial-patchbomb/2.3.1 Date: Tue, 06 Nov 2012 19:36:08 +0100 From: Titus von Boxberg To: crossgcc@sourceware.org X-IsSubscribed: yes Mailing-List: contact crossgcc-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: crossgcc-owner@sourceware.org Delivered-To: mailing list crossgcc@sourceware.org # HG changeset patch # User Titus von Boxberg # Date 1352217726 -3600 # Node ID 51587db99510a9ec08f831b2ed596017efb253a5 # Parent bd4af15b7c7577de5e7abbf0b2be1729523b0127 Makefile.in: Use only standard options compatible with BSD install Don't use options specific to FSF's coreutils install. Signed-off-by: Titus von Boxberg --- For unsubscribe information see http://sourceware.org/lists.html#faq diff -r bd4af15b7c75 -r 51587db99510 Makefile.in --- a/Makefile.in Wed Oct 31 23:31:32 2012 +0100 +++ b/Makefile.in Tue Nov 06 17:02:06 2012 +0100 @@ -347,8 +347,9 @@ KCONFIG_FILES := conf mconf nconf kconfig.mk install-lib-kconfig: $(DESTDIR)$(libdir) install-lib-main @echo " INST 'kconfig/'" + @mkdir -p "$(DESTDIR)$(libdir)/kconfig" @for f in $(KCONFIG_FILES); do \ - install -D "kconfig/$${f}" "$(DESTDIR)$(libdir)/kconfig/$${f}"; \ + install "kconfig/$${f}" "$(DESTDIR)$(libdir)/kconfig/$${f}"; \ done install-doc: $(DESTDIR)$(docdir)