From 8db47ef24c3ab8f2bd30519818b7c50ea864ccd7 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Nov 25 2009 23:02:33 +0000 Subject: Fix typo that causes a failure to update the common directory. (releng #2781) --- diff --git a/Makefile b/Makefile index 9b7bd88..aa6296b 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: SimGear -# $Id$ +# $Id: Makefile,v 1.1 2007/02/23 12:45:12 ausil Exp $ NAME := SimGear SPECFILE = SimGear.spec define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common))