From dd4bc9fd09dd2578cdf35746429b80af9b8a88cb Mon Sep 17 00:00:00 2001 From: Chun-wei Fan Date: Tue, 3 Jun 2014 17:00:02 +0800 Subject: [PATCH] gdk/Makefile.am: Fix MSVC Project Generation We need to account for the sources that moved to gdk/deprecated/, so the slashes must be converted here. --- gdk/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gdk/Makefile.am b/gdk/Makefile.am index c9fd11d0bb..6adaa7ac5c 100644 --- a/gdk/Makefile.am +++ b/gdk/Makefile.am @@ -426,7 +426,7 @@ stamp-gc-h: $(top_builddir)/config.status dist-hook: ../build/win32/vs9/gdk.vcproj ../build/win32/vs10/gdk.vcxproj ../build/win32/vs10/gdk.vcxproj.filters ../build/win32/vs9/gdk.vcproj: ../build/win32/vs9/gdk.vcprojin - for F in $(libgdk_3_la_SOURCES); do \ + for F in `echo $(libgdk_3_la_SOURCES) | tr '/' '\\'`; do \ case $$F in \ *.c) echo ' ' \ ;; \ @@ -436,7 +436,7 @@ dist-hook: ../build/win32/vs9/gdk.vcproj ../build/win32/vs10/gdk.vcxproj ../buil rm libgdk.sourcefiles ../build/win32/vs10/gdk.vcxproj: ../build/win32/vs10/gdk.vcxprojin - for F in $(libgdk_3_la_SOURCES); do \ + for F in `echo $(libgdk_3_la_SOURCES) | tr '/' '\\'`; do \ case $$F in \ *.c) echo ' ' \ ;; \ @@ -446,7 +446,7 @@ dist-hook: ../build/win32/vs9/gdk.vcproj ../build/win32/vs10/gdk.vcxproj ../buil rm libgdk.vs10.sourcefiles ../build/win32/vs10/gdk.vcxproj.filters: ../build/win32/vs10/gdk.vcxproj.filtersin - for F in $(libgdk_3_la_SOURCES); do \ + for F in `echo $(libgdk_3_la_SOURCES) | tr '/' '\\'`; do \ case $$F in \ *.c) echo ' Source Files' \ ;; \