diff options
author | orbea <[email protected]> | 2021-04-04 07:07:18 -0700 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-04-13 17:43:16 +0200 |
commit | 31f65910114d11671cb042ee240b95e78a933ebb (patch) | |
tree | a946c9f0bc38695d900217bd874900da3e59593c | |
parent | b8f1d0c2d0ebb7adaecc9fcaceef111a3737ebff (diff) | |
download | atril-31f65910114d11671cb042ee240b95e78a933ebb.tar.bz2 atril-31f65910114d11671cb042ee240b95e78a933ebb.tar.xz |
introspection: Fix bogus --library arguments.
-rw-r--r-- | libdocument/Makefile.am | 2 | ||||
-rw-r--r-- | libview/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libdocument/Makefile.am b/libdocument/Makefile.am index d1db419c..fc81c891 100644 --- a/libdocument/Makefile.am +++ b/libdocument/Makefile.am @@ -168,7 +168,7 @@ AtrilDocument-$(EV_API_VERSION).gir: libatrildocument.la Makefile $(INST_H_FILES --include=Gdk-3.0 \ --include=GdkPixbuf-2.0 \ --include=Gtk-3.0 \ - --library=atrildocument \ + --library=libatrildocument.la \ --libtool="$(LIBTOOL)" \ --output $@ \ --pkg atril-document-$(EV_API_VERSION) \ diff --git a/libview/Makefile.am b/libview/Makefile.am index be5f7264..0835e9c3 100644 --- a/libview/Makefile.am +++ b/libview/Makefile.am @@ -141,7 +141,7 @@ AtrilView-$(EV_API_VERSION).gir: libatrilview.la Makefile $(INST_H_FILES) $(filt --include=GdkPixbuf-2.0 \ --include=Gtk-3.0 \ --include=AtrilDocument-$(EV_API_VERSION) \ - --library=atrilview \ + --library=libatrilview.la \ --libtool="$(LIBTOOL)" \ --output $@ \ --pkg atril-document-$(EV_API_VERSION) \ |