diff options
author | Werner Koch <wk@gnupg.org> | 2008-11-11 12:45:17 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2008-11-11 12:45:17 +0100 |
commit | abaa732d6b0cade814bdbda36a2d0cb5d79b1684 (patch) | |
tree | de11cea4cf6e89d69af8d2be14a47d072206d252 /kbx | |
parent | Minor cleanups. (diff) | |
download | gnupg2-abaa732d6b0cade814bdbda36a2d0cb5d79b1684.tar.xz gnupg2-abaa732d6b0cade814bdbda36a2d0cb5d79b1684.zip |
Reorder libs in kbx.
Diffstat (limited to 'kbx')
-rw-r--r-- | kbx/ChangeLog | 5 | ||||
-rw-r--r-- | kbx/Makefile.am | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/kbx/ChangeLog b/kbx/ChangeLog index 269b8ddfa..dc45e29a4 100644 --- a/kbx/ChangeLog +++ b/kbx/ChangeLog @@ -1,3 +1,8 @@ +2008-11-11 Werner Koch <wk@g10code.com> + + * Makefile.am (kbxutil_LDADD): Change order of libs. + ($(PROGRAMS)): Ditto for documentation. + 2008-10-20 Werner Koch <wk@g10code.com> * keybox-update.c (blob_filecopy): Remove unused arg n_packets. diff --git a/kbx/Makefile.am b/kbx/Makefile.am index 85791efaf..14e8fa5e2 100644 --- a/kbx/Makefile.am +++ b/kbx/Makefile.am @@ -46,8 +46,8 @@ libkeybox_a_SOURCES = $(common_sources) # requires it - although we don't actually need it. It is easier # to do it this way. kbxutil_SOURCES = kbxutil.c $(common_sources) -kbxutil_LDADD = ../jnlib/libjnlib.a ../gl/libgnu.a ../common/libcommon.a \ +kbxutil_LDADD = ../common/libcommon.a ../jnlib/libjnlib.a ../gl/libgnu.a \ $(KSBA_LIBS) $(LIBGCRYPT_LIBS) \ $(GPG_ERROR_LIBS) $(LIBINTL) $(LIBICONV) $(W32SOCKLIBS) -$(PROGRAMS) : ../jnlib/libjnlib.a ../gl/libgnu.a ../common/libcommon.a +$(PROGRAMS) : ../common/libcommon.a ../jnlib/libjnlib.a ../gl/libgnu.a |