summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@fedoraproject.org>2009-11-25 23:19:53 +0000
committerBill Nottingham <notting@fedoraproject.org>2009-11-25 23:19:53 +0000
commit8380272011403cfbf77d37f3c588d2c4025818f0 (patch)
treea4f0fc297f798b47434e63984f6d4b29d0bded60
parentac37a89b73ccc8efc1841dc001069e2e0bc008c6 (diff)
downloadguile-8380272011403cfbf77d37f3c588d2c4025818f0.tar.gz
guile-8380272011403cfbf77d37f3c588d2c4025818f0.tar.xz
guile-8380272011403cfbf77d37f3c588d2c4025818f0.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 4f49428..6893370 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
# Makefile for source rpm: guile
-# $Id: Makefile,v 1.1 2004/09/09 06:02:10 cvsdist Exp $
+# $Id: Makefile,v 1.2 2007/10/15 18:51:30 notting Exp $
NAME := guile
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))