diff options
| author | Bill Nottingham <notting@fedoraproject.org> | 2009-11-25 22:37:54 (GMT) |
|---|---|---|
| committer | Bill Nottingham <notting@fedoraproject.org> | 2009-11-25 22:37:54 (GMT) |
| commit | 2c422269042bce3c07e7b4ad57b1afebd289e646 (patch) | |
| tree | 7a4772a606fa6b5dc0f9a89c699d604b2498cc37 | |
| parent | 21e068544ac88516e1f4ae5ae68df77b203f24cb (diff) | |
| download | 389-dsgw-2c422269042bce3c07e7b4ad57b1afebd289e646.zip 389-dsgw-2c422269042bce3c07e7b4ad57b1afebd289e646.tar.gz 389-dsgw-2c422269042bce3c07e7b4ad57b1afebd289e646.tar.bz2 | |
Fix typo that causes a failure to update the common directory. (releng
#2781)
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ NAME := 389-dsgw 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)) |
