summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@fedoraproject.org>2009-11-26 01:25:08 +0000
committerBill Nottingham <notting@fedoraproject.org>2009-11-26 01:25:08 +0000
commitb24fce1670f52c388f8bd4d83744ea6e19588894 (patch)
treef6cc18a2d19cc3331cd7e5547ad33aabed7ea59c
parent84d28213b499f44cf7d49758131ae3f3c2681d2b (diff)
downloadkrb5-b24fce1670f52c388f8bd4d83744ea6e19588894.tar.gz
krb5-b24fce1670f52c388f8bd4d83744ea6e19588894.tar.xz
krb5-b24fce1670f52c388f8bd4d83744ea6e19588894.zip
Fix typo that causes a failure to update the common directory. (releng
#2781)
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4945603..c7064de 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
# Makefile for source rpm: krb5
-# $Id: Makefile,v 1.1 2004/09/09 07:05:45 cvsdist Exp $
+# $Id: Makefile,v 1.2 2007/10/15 18:56:42 notting Exp $
NAME := krb5
SPECFILE = $(firstword $(wildcard *.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))