build/Makefile-newvs.am: Fix %.vcxproj Rule
authorChun-wei Fan <fanchunwei@src.gnome.org>
Wed, 22 Apr 2015 08:36:13 +0000 (16:36 +0800)
committerChun-wei Fan <fanchunwei@src.gnome.org>
Wed, 22 Apr 2015 08:36:13 +0000 (16:36 +0800)
The if-else statement added in commit 9bc3ae9 was missing a '\' after the
'else', causing 'make dist/distcheck' to break with "unexpected
end-of-file" errors.

Fix this-didn't notice this when reviewing that patch.  My fault. :|

build/Makefile-newvs.am

index d9a3eba..e3acd91 100644 (file)
@@ -18,7 +18,7 @@ README.txt: $(top_srcdir)/build/win32/vs10/README.txt
 %.vcxproj:
        if test -e $(top_srcdir)/build/win32/vs10/$@; then \
                sed 's/v100/v$(MSVC_VER)0/g' < $(top_srcdir)/build/win32/vs10/$@ > $(top_builddir)/build/win32/vs$(MSVC_VER)/$@; \
-       else
+       else \
                sed 's/v100/v$(MSVC_VER)0/g' < $(top_builddir)/build/win32/vs10/$@ > $(top_builddir)/build/win32/vs$(MSVC_VER)/$@; \
        fi