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