diff options
author | Chun-wei Fan <fanchunwei@src.gnome.org> | 2017-02-17 18:19:38 +0800 |
---|---|---|
committer | Chun-wei Fan <fanchunwei@src.gnome.org> | 2017-02-17 18:19:38 +0800 |
commit | 8ab398d23a1606bc4ab5a0888fc2e5190bfa641d (patch) | |
tree | 8fc29f6a48b9c42f8537afe77ca8de4f8e0fde6e | |
parent | f4d0e07b9f4a77e941a598ff6a68371db887bf91 (diff) | |
download | gobject-introspection-8ab398d23a1606bc4ab5a0888fc2e5190bfa641d.tar.gz |
win32/Makefile.msvc-intrspection: Fix paths
This module is not used in G-I itself, but is copied and used in other
modules, so make sure paths in here are up-to-date after the project moved
to win32/ from build/win32
-rw-r--r-- | win32/Makefile.msvc-introspection | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/Makefile.msvc-introspection b/win32/Makefile.msvc-introspection index 0af2d4ff..1a244e0d 100644 --- a/win32/Makefile.msvc-introspection +++ b/win32/Makefile.msvc-introspection @@ -18,7 +18,7 @@ # is required unless --headers-only is specified in # YourLib_1_0_gir__MSVC_SCANNERFLAGS) # -# include <this Makefile.msvc-introspection +# include <this Makefile.msvc-introspection> # MSVC_INTROSPECT_GIRS = YourLib-1.0.gir # YourLib_1_0_gir_NAMESPACE = YourLib # This is optional # YourLib_1_0_gir_VERSION = 1.0 # This is optional @@ -86,7 +86,7 @@ $(top_builddir)/win32/$(_gir_name)_list: for F in $(_gir_files_msvc); do \ case $$$$F in \ *.c|*.cpp|*.cc|*.cxx|*.h|*.hpp|*.hh|*.hxx) \ - echo '..\..'$(_gir_source_subdir_msvc)$$$$F >>$(top_builddir)/win32/$(_gir_name)_list \ + echo '..'$(_gir_source_subdir_msvc)$$$$F >>$(top_builddir)/win32/$(_gir_name)_list \ ;; \ esac; \ done |