From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: make update fails Date: Sat, 10 Nov 2012 22:01:22 -0500 Message-ID: <18947.1352602882@alphaville> References: Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([208.118.235.92]:51317) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TXNnj-0005qB-Lb for emacs-orgmode@gnu.org; Sat, 10 Nov 2012 22:01:38 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TXNng-0001xN-IC for emacs-orgmode@gnu.org; Sat, 10 Nov 2012 22:01:35 -0500 Received: from g1t0026.austin.hp.com ([15.216.28.33]:42624) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TXNng-0001wV-DM for emacs-orgmode@gnu.org; Sat, 10 Nov 2012 22:01:32 -0500 In-Reply-To: Message from tsd@tsdye.com (Thomas S. Dye) of "Sat, 10 Nov 2012 09:03:35 -1000." List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: "Thomas S. Dye" Cc: Org-mode Thomas S. Dye wrote: > Aloha all, > > I get this error message: > > mk/targets.mk:75: *** target file `update' has both : and :: entries. Stop. > > I suspect I've done something wrong and will appreciate suggestions how > to get back on track. > Probably added something to your local.mk that looks like this: update: .... mk/targets.mk has this however: update update2:: up0 all The single vs double colons cause the problem: see (info "(make) Multiple Rules") (info "(make) Double-Colon") for the details. Nick