From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5767 invoked by alias); 4 Aug 2003 14:14:46 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 5713 invoked from network); 4 Aug 2003 14:14:44 -0000 Received: from unknown (HELO localhost.redhat.com) (24.157.166.107) by sources.redhat.com with SMTP; 4 Aug 2003 14:14:44 -0000 Received: from redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 508B92B7F; Mon, 4 Aug 2003 10:14:43 -0400 (EDT) Message-ID: <3F2E6A53.70207@redhat.com> Date: Mon, 04 Aug 2003 14:14:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.2) Gecko/20030223 X-Accept-Language: en-us, en MIME-Version: 1.0 To: "H. J. Lu" Cc: GDB Subject: Re: PATCH: Support DESTDIR References: <20030731220953.GA18365@lucon.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2003-08/txt/msg00031.txt.bz2 Hmm, which of these is correct: > - $(SHELL) $(srcdir)/../../mkinstalldirs $(infodir) > + $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)/$(infodir) > - $(INSTALL_DATA) $$i $(htmldir)/$$i ; \ > + $(INSTALL_DATA) $$i $(DESTDIR)$(htmldir)/$$i ; \ (the slash)? > + $(mkinstalldirs) $(DESTDIR)$(infodir) Please keep the mkinstalldirs consistent with the rest of GDB vis: $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$infodir) The addition of mkinstalldirs should be mentioned in the ChangeLog. Andrew