diff options
author | Ting-Wei Lan <lantw44@gmail.com> | 2013-09-11 21:27:28 +0800 |
---|---|---|
committer | LAN-TW <lantw44@gmail.com> | 2013-09-11 21:42:01 +0800 |
commit | 588c58ba00191afefe3581f6aeb71903f678c6f4 (patch) | |
tree | 5d68888bb33b37576249291cc5b3a80eb7b3a385 | |
parent | 78204824d6f255cb82d6066d20ec6c34f60d7ced (diff) | |
download | gsoc2013-libgnome-autoar-588c58ba00191afefe3581f6aeb71903f678c6f4.tar.gz gsoc2013-libgnome-autoar-588c58ba00191afefe3581f6aeb71903f678c6f4.tar.zst gsoc2013-libgnome-autoar-588c58ba00191afefe3581f6aeb71903f678c6f4.zip |
Fix possible build problem
-rw-r--r-- | docs/reference/gnome-autoar/Makefile.am | 2 | ||||
-rw-r--r-- | tests/Makefile.am | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/reference/gnome-autoar/Makefile.am b/docs/reference/gnome-autoar/Makefile.am index b820f07..0361660 100644 --- a/docs/reference/gnome-autoar/Makefile.am +++ b/docs/reference/gnome-autoar/Makefile.am @@ -20,8 +20,8 @@ GTKDOC_CFLAGS = \ $(NULL) GTKDOC_LIBS = \ - $(DEPENDENCIES_LIBS) \ $(top_builddir)/gnome-autoar/libgnome-autoar.la \ + $(DEPENDENCIES_LIBS) \ $(NULL) # This includes the standard gtk-doc make rules, copied by gtkdocize. diff --git a/tests/Makefile.am b/tests/Makefile.am index c96ef9a..60de4e0 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -6,13 +6,13 @@ noinst_PROGRAMS = test-extract test-pref test-create test-ui test_cflags = \ $(DEPENDENCIES_CFLAGS) \ - $(AM_CFLAGS) \ -I$(top_srcdir) \ + $(AM_CFLAGS) \ $(NULL) test_libs = \ - $(DEPENDENCIES_LIBS) \ $(top_builddir)/gnome-autoar/libgnome-autoar.la \ + $(DEPENDENCIES_LIBS) \ $(NULL) |