diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Makefile.in | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -2,6 +2,8 @@ | |||
2 | - (bal) Cygwin clean up by Corinna Vinschen <vinschen@redhat.com> | 2 | - (bal) Cygwin clean up by Corinna Vinschen <vinschen@redhat.com> |
3 | - (bal) renamed queue.h to fake-queue.h (even if it's an OpenBSD | 3 | - (bal) renamed queue.h to fake-queue.h (even if it's an OpenBSD |
4 | based file) to ensure #include space does not get confused. | 4 | based file) to ensure #include space does not get confused. |
5 | - (bal) Minor Makefile.in tweak. dirname may not exist on some | ||
6 | platforms so builds fail. (NeXT being a well known one) | ||
5 | 7 | ||
6 | 20010102 | 8 | 20010102 |
7 | - (bal) Makefile fix where sourcedir != builddir by Corinna Vinschen | 9 | - (bal) Makefile fix where sourcedir != builddir by Corinna Vinschen |
diff --git a/Makefile.in b/Makefile.in index 52009f22f..21ffb9b20 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -79,7 +79,7 @@ $(LIBOPENBSD_COMPAT_OBJS): config.h | |||
79 | 79 | ||
80 | LIBCOMPAT=openbsd-compat/libopenbsd-compat.a | 80 | LIBCOMPAT=openbsd-compat/libopenbsd-compat.a |
81 | $(LIBCOMPAT): | 81 | $(LIBCOMPAT): |
82 | (cd `dirname $@`; $(MAKE)) | 82 | (cd openbsd-compat; $(MAKE)) |
83 | 83 | ||
84 | libssh.a: $(LIBSSH_OBJS) | 84 | libssh.a: $(LIBSSH_OBJS) |
85 | $(AR) rv $@ $(LIBSSH_OBJS) | 85 | $(AR) rv $@ $(LIBSSH_OBJS) |