From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27415 invoked by alias); 7 May 2007 21:11:36 -0000 Received: (qmail 27400 invoked by uid 22791); 7 May 2007 21:11:35 -0000 X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (65.74.133.4) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 07 May 2007 21:11:31 +0000 Received: (qmail 11641 invoked from network); 7 May 2007 21:11:29 -0000 Received: from unknown (HELO localhost) (jimb@127.0.0.2) by mail.codesourcery.com with ESMTPA; 7 May 2007 21:11:29 -0000 To: gcc-patches@gcc.gnu.org, libstdc++@gcc.gnu.org Subject: Make sure symbol version script is writeable From: Jim Blandy Date: Mon, 07 May 2007 21:11:00 -0000 Message-ID: User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2007-05/txt/msg00451.txt.bz2 If the source tree has been made read-only, the libstdc++-v3 build dies trying to construct src/libstdc++-symbols.ver. libstdc++-v3/ChangeLog: 2007-05-07 Jim Blandy * libstdc++-v3/src/Makefile.am (libstdc++-symbol.ver): Make sure the build tree copy of libstdc++-symbol.ver is writeable. * libstdc++-v3/src/Makefile.in: Regenerated. Index: libstdc++-v3/src/Makefile.am =================================================================== --- libstdc++-v3/src/Makefile.am (revision 124502) +++ libstdc++-v3/src/Makefile.am (working copy) @@ -32,6 +32,7 @@ libstdc++-symbols.ver: ${glibcxx_srcdir}/$(SYMVER_FILE) \ $(port_specific_symbol_files) cp ${glibcxx_srcdir}/$(SYMVER_FILE) ./libstdc++-symbols.ver + chmod +w ./libstdc++-symbol.ver if test "x$(port_specific_symbol_files)" != x; then \ if grep '^# Appended to version file.' \ $(port_specific_symbol_files) /dev/null > /dev/null 2>&1; then \