[glib] build/Makefile-newvs.am: Fix %.vcxproj Rule



commit cf940b66bcea7835c2e01b9bfa051a2e826835c9
Author: Chun-wei Fan <fanchunwei src gnome org>
Date:   Wed Apr 22 16:36:13 2015 +0800

    build/Makefile-newvs.am: Fix %.vcxproj Rule
    
    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 |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/build/Makefile-newvs.am b/build/Makefile-newvs.am
index d9a3eba..e3acd91 100644
--- a/build/Makefile-newvs.am
+++ b/build/Makefile-newvs.am
@@ -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
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]