diff options
-rw-r--r-- | opcodes/ChangeLog | 6 | ||||
-rwxr-xr-x | opcodes/configure | 2 | ||||
-rw-r--r-- | opcodes/configure.in | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index bc85528..b69100a 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,9 @@ +2007-10-08 Nick Clifton <nickc@redhat.com> + + * configure.in (SHARED_DEPENDENCIES): Change non-cygwin dependency + to be ../bfd/libbfd.la. + * configure: Regenerate. + 2007-10-05 H.J. Lu <hongjiu.lu@intel.com> * i386-dis.c (dis386_twobyte): Add getsec. diff --git a/opcodes/configure b/opcodes/configure index 6419862..46d059d 100755 --- a/opcodes/configure +++ b/opcodes/configure @@ -11445,7 +11445,7 @@ if test "$enable_shared" = "yes"; then ;; *) SHARED_LIBADD="-Wl,`pwd`/../bfd/.libs/libbfd.so" - SHARED_DEPENDENCIES="`pwd`/../bfd/.libs/libbfd.la" + SHARED_DEPENDENCIES="../bfd/libbfd.la" ;; esac fi diff --git a/opcodes/configure.in b/opcodes/configure.in index 3ff2045..460d95d 100644 --- a/opcodes/configure.in +++ b/opcodes/configure.in @@ -109,7 +109,7 @@ if test "$enable_shared" = "yes"; then ;; *) SHARED_LIBADD="-Wl,`pwd`/../bfd/.libs/libbfd.so" - SHARED_DEPENDENCIES="`pwd`/../bfd/.libs/libbfd.la" + SHARED_DEPENDENCIES="../bfd/libbfd.la" ;; esac fi |