From patchwork Sat Sep 22 08:33:32 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bongseo Jang X-Patchwork-Id: 186113 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 33F842C0089 for ; Sat, 22 Sep 2012 18:34:14 +1000 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=sourceware.org; s=default; x=1348907654; h=Comment: DomainKey-Signature:Received:Received:Received:Received: MIME-Version:Received:Received:Date:Message-ID:Subject:From:To: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Subscribe:List-Archive:List-Post:List-Help:Sender: Delivered-To; bh=MKui+gLvHtqNP6zU4dJLwwDm5as=; b=B2hsk/9o8llPQ4Y wcfDZNt+S3/OFh6/B22YdO6alAH8NCIHNIAy2T4K+KHhOcESMfC5tkxveXTfe+dn 4RZ4hPQaESRnM0VLf/oU49PaQLo0p/bah6gwLc+WgelVMtvj09A4ZMOWvYGlISRO 4LdPXdK2Q4H4CoypGRkDZZq1ydCU= 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:MIME-Version:Received:Received:Date:Message-ID:Subject:From:To:Content-Type:X-IsSubscribed:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Subscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=QOP1rBpn8V3qgH3Y+eGssAmO4FrjwiToyCFkesRcVFPuw59FEUon8z9ClFri8I qP9nmmVaUd6isI7QmWSjfqxDgHAR3P6QzCCcUc+Iwv/8fdVQIQIykLD+tevrFEOS 3fN9zql65n1di/0d5Fj62kddvlAb0CxytCyAbIDSu45B8=; Received: (qmail 26336 invoked by alias); 22 Sep 2012 08:34:10 -0000 Received: (qmail 26229 invoked by uid 22791); 22 Sep 2012 08:34:09 -0000 X-SWARE-Spam-Status: No, hits=-3.8 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, KHOP_RCVD_TRUST, RCVD_IN_DNSWL_LOW, RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from mail-lb0-f169.google.com (HELO mail-lb0-f169.google.com) (209.85.217.169) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 22 Sep 2012 08:33:34 +0000 Received: by lbbgj10 with SMTP id gj10so4929657lbb.0 for ; Sat, 22 Sep 2012 01:33:32 -0700 (PDT) MIME-Version: 1.0 Received: by 10.152.103.84 with SMTP id fu20mr6293552lab.9.1348302812620; Sat, 22 Sep 2012 01:33:32 -0700 (PDT) Received: by 10.112.132.73 with HTTP; Sat, 22 Sep 2012 01:33:32 -0700 (PDT) Date: Sat, 22 Sep 2012 17:33:32 +0900 Message-ID: Subject: [PATCH 3/3] Forcefully symlink kernel source directory From: Bongseo Jang 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 "ct-ng build" fails when I do it again because it tries to symlink kernel source dir without '-f'. diff -r e9cb0fae0ee0 -r 6399a4b8d74c scripts/build/kernel/linux.sh --- a/scripts/build/kernel/linux.sh Sat Sep 22 16:56:58 2012 +0900 +++ b/scripts/build/kernel/linux.sh Sat Sep 22 16:57:47 2012 +0900 @@ -41,7 +41,7 @@ "${CT_TARBALLS_DIR}/${custom_name}" else custom_name="linux-custom" - CT_DoExecLog DEBUG ln -s "${CT_KERNEL_LINUX_CUSTOM_LOCATION}" \ + CT_DoExecLog DEBUG ln -sf "${CT_KERNEL_LINUX_CUSTOM_LOCATION}" \ "${CT_SRC_DIR}/${custom_name}" fi else # Not a custom tarball