From e6b3b7ba6621fe51eb53bc23378c61400099b4ed Mon Sep 17 00:00:00 2001 From: Ben Lindstrom Date: Sat, 3 Feb 2001 00:33:04 +0000 Subject: - (bal) Minor Makefile.in tweak. dirname may not exist on some platforms so builds fail. (NeXT being a well known one) --- ChangeLog | 2 ++ Makefile.in | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 15fb0df8e..31eeb8712 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,8 @@ - (bal) Cygwin clean up by Corinna Vinschen - (bal) renamed queue.h to fake-queue.h (even if it's an OpenBSD based file) to ensure #include space does not get confused. + - (bal) Minor Makefile.in tweak. dirname may not exist on some + platforms so builds fail. (NeXT being a well known one) 20010102 - (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 LIBCOMPAT=openbsd-compat/libopenbsd-compat.a $(LIBCOMPAT): - (cd `dirname $@`; $(MAKE)) + (cd openbsd-compat; $(MAKE)) libssh.a: $(LIBSSH_OBJS) $(AR) rv $@ $(LIBSSH_OBJS) -- cgit v1.2.3