summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-02-03 00:33:04 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-02-03 00:33:04 +0000
commite6b3b7ba6621fe51eb53bc23378c61400099b4ed (patch)
tree7aa22ebac792377c406ee9a9b9353274d0f0db0e
parent6413635b01d7479db7990e4f7e3d8dc28bd10c44 (diff)
- (bal) Minor Makefile.in tweak. dirname may not exist on some
platforms so builds fail. (NeXT being a well known one)
-rw-r--r--ChangeLog2
-rw-r--r--Makefile.in2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 15fb0df8e..31eeb8712 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
620010102 820010102
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
80LIBCOMPAT=openbsd-compat/libopenbsd-compat.a 80LIBCOMPAT=openbsd-compat/libopenbsd-compat.a
81$(LIBCOMPAT): 81$(LIBCOMPAT):
82 (cd `dirname $@`; $(MAKE)) 82 (cd openbsd-compat; $(MAKE))
83 83
84libssh.a: $(LIBSSH_OBJS) 84libssh.a: $(LIBSSH_OBJS)
85 $(AR) rv $@ $(LIBSSH_OBJS) 85 $(AR) rv $@ $(LIBSSH_OBJS)