summaryrefslogtreecommitdiffstats
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 15fb0df8..31eeb871 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@
- (bal) Cygwin clean up by Corinna Vinschen <vinschen@redhat.com>
- (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 52009f22..21ffb9b2 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)