diff options
author | Max Kellermann <max@duempel.org> | 2014-10-07 06:21:30 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-10-07 06:21:34 +0200 |
commit | d3e72e43447f3937de72dce87cd0560dc017e6f5 (patch) | |
tree | 26f177497f886e8fda470c1d74d058c2b35ff6ad | |
parent | 60512ffa09e779da4b1c0ba3ce3f1ab6a73f0fb6 (diff) |
Makefile.am: add libnfs and libsmbclient to STORAGE_LIBS
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 6768acbb4..80894d504 100644 --- a/Makefile.am +++ b/Makefile.am @@ -580,7 +580,10 @@ libstorage_a_CPPFLAGS = $(AM_CPPFLAGS) \ $(NFS_CFLAGS) \ $(SMBCLIENT_CFLAGS) -STORAGE_LIBS = libstorage.a +STORAGE_LIBS = \ + $(NFS_LIBS) \ + $(SMBCLIENT_LIBS) \ + libstorage.a if ENABLE_SMBCLIENT libstorage_a_SOURCES += \ |