summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@fedoraproject.org>2009-11-26 02:18:51 +0000
committerBill Nottingham <notting@fedoraproject.org>2009-11-26 02:18:51 +0000
commit39dc1459a7951b4b461fa6bff3cbcb5ed66a2e86 (patch)
treec6574a77d873b340724f5eef66b5e7593fe7cdcc
parentc46c016b0ec4116dba47737793206560cca45207 (diff)
downloadperl-Unix-Statgrab-39dc1459a7951b4b461fa6bff3cbcb5ed66a2e86.tar.gz
perl-Unix-Statgrab-39dc1459a7951b4b461fa6bff3cbcb5ed66a2e86.tar.xz
perl-Unix-Statgrab-39dc1459a7951b4b461fa6bff3cbcb5ed66a2e86.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 8917525..f99946f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
# Makefile for source rpm: perl-Unix-Statgrab
-# $Id$
+# $Id: Makefile,v 1.1 2005/08/23 11:40:00 oliver Exp $
NAME := perl-Unix-Statgrab
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))