Skip to content

Commit 83acdfa

Browse files
author
Shad L. Lords
committed
Fix Makefile and add .cvsignore
1 parent fffae80 commit 83acdfa

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.cvsignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
e-smith-cvm-unix-local-1.2.0.tar.gz

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Makefile for source rpm: e-smith-cvm-unix-local
2-
# $Id: Makefile,v 1.1 2007/06/12 18:32:25 slords Exp $
2+
# $Id: Makefile,v 1.2 2008/02/08 19:06:31 slords Exp $
33
NAME := e-smith-cvm-unix-local
44
SPECFILE = $(firstword $(wildcard *.spec))
55

66
define find-makefile-common
7-
for d in ../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
7+
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
88
endef
99

1010
MAKEFILE_COMMON := $(shell $(find-makefile-common))
1111

1212
ifeq ($(MAKEFILE_COMMON),)
1313
# attept a checkout
1414
define checkout-makefile-common
15-
test -f CVS/Root && { cd .. ; cvs -Q -d $$(cat CVS/Root) checkout common && echo "../common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
15+
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
1616
endef
1717

1818
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))

0 commit comments

Comments
 (0)