]> git.karo-electronics.de Git - karo-tx-linux.git/commit
gconfig: fix build failure on fedora 13
authorRichard Kennedy <richard@rsk.demon.co.uk>
Thu, 27 May 2010 09:22:28 +0000 (10:22 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 5 Jul 2010 18:15:59 +0000 (11:15 -0700)
commit1f55cdf626c7a0aaa20bba6832352fef6fb1127e
tree35adde5ac2e1d74746a3a9d3c4444727ad4a3331
parent3a1b0323750fa3189736699afdc1452ba3325dae
gconfig: fix build failure on fedora 13

commit cbab05f041a4cff6ca15856bdd35238b282b64eb upstream.

Making gconfig fails on fedora 13 as the linker cannot resolve dlsym.

Adding libdl to the link command fixes this.

make shows this error :-
    /usr/bin/ld: scripts/kconfig/kconfig_load.o: undefined reference to symbol 'dlsym@@GLIBC_2.2.5'
    /usr/bin/ld: note: 'dlsym@@GLIBC_2.2.5' is defined in DSO /lib64/libdl.so.2 so try adding it to the linker command line
    /lib64/libdl.so.2: could not read symbols: Invalid operation

tested on x86_64 fedora 13.

Signed-off-by: Richard Kennedy <richard@rsk.demon.co.uk>
Reviewed-by: WANG Cong <xiyou.wangcong@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
scripts/kconfig/Makefile