- (bal) Minor Makefile.in tweak.  dirname may not exist on some
   platforms so builds fail.  (NeXT being a well known one)
diff --git a/Makefile.in b/Makefile.in
index 52009f2..21ffb9b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -79,7 +79,7 @@
 
 LIBCOMPAT=openbsd-compat/libopenbsd-compat.a
 $(LIBCOMPAT): 
-	(cd `dirname $@`; $(MAKE))
+	(cd openbsd-compat; $(MAKE))
 
 libssh.a: $(LIBSSH_OBJS)
 	$(AR) rv $@ $(LIBSSH_OBJS)