diff options
author | David Anders <dave123@abcsinc.com> | 2006-01-23 13:55:55 +0000 |
---|---|---|
committer | David Anders <dave123@abcsinc.com> | 2006-01-23 13:55:55 +0000 |
commit | 8351d099e251fffc284c2943e7de5ce060ff5a15 (patch) | |
tree | 44077c2560ea8f5cf06367e9a50fc12636b34745 | |
parent | 48790084428b35931a9ea83ccce42467b92a145c (diff) | |
download | buildroot-novena-8351d099e251fffc284c2943e7de5ce060ff5a15.tar.gz buildroot-novena-8351d099e251fffc284c2943e7de5ce060ff5a15.zip |
disable shared library support during configuration
-rw-r--r-- | package/libelf/Config.in | 3 | ||||
-rw-r--r-- | package/libelf/libelf.mk | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/package/libelf/Config.in b/package/libelf/Config.in index e0108f2a3..3fc933f00 100644 --- a/package/libelf/Config.in +++ b/package/libelf/Config.in @@ -3,6 +3,7 @@ config BR2_PACKAGE_LIBELF default n help This is the public release of libelf-0.8.5, a free ELF object - file access library. + file access library. This build does not generate a shared + library. http://www.stud.uni-hannover.de/~michael/software/ diff --git a/package/libelf/libelf.mk b/package/libelf/libelf.mk index 3fa315120..119155c82 100644 --- a/package/libelf/libelf.mk +++ b/package/libelf/libelf.mk @@ -31,7 +31,7 @@ $(LIBELF_DIR)/.configured: $(LIBELF_DIR)/.source --prefix=/usr \ --sysconfdir=/etc \ $(DISABLE_NLS) \ - --enable-shared \ + --disable-shared \ ); touch $(LIBELF_DIR)/.configured; |