diff options
| author | Bill Nottingham <notting@fedoraproject.org> | 2009-11-25 22:38:29 (GMT) |
|---|---|---|
| committer | Bill Nottingham <notting@fedoraproject.org> | 2009-11-25 22:38:29 (GMT) |
| commit | d0aecbb3c82afdfa0dd551e93f26879153f2345b (patch) | |
| tree | 6acaebc2f7d9a60c81ba44ee85fdb1e56d0a6d21 | |
| parent | 788ce696fc60df6f3d489af3a8a08de1b2a1fa29 (diff) | |
| download | adime-d0aecbb3c82afdfa0dd551e93f26879153f2345b.zip adime-d0aecbb3c82afdfa0dd551e93f26879153f2345b.tar.gz adime-d0aecbb3c82afdfa0dd551e93f26879153f2345b.tar.bz2 | |
Fix typo that causes a failure to update the common directory. (relengF-13-startF-13-split
#2781)
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ NAME := adime 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)) |
