From f38044b0cc903f82ea98557ea92c27653e9d8c7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Sun, 17 May 1998 18:59:51 +0200 Subject: [PATCH] Fixed some Dynix 3.1.1 compatibility. Rev: src/Makefile.in:1.90 --- src/Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Makefile.in b/src/Makefile.in index 493f58537f..76b5283cd2 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -1,5 +1,5 @@ # -# $Id: Makefile.in,v 1.89 1998/05/06 00:38:55 hubbe Exp $ +# $Id: Makefile.in,v 1.90 1998/05/17 16:59:51 grubba Exp $ # # This line is needed on some machines. @@ -171,7 +171,7 @@ hilfe: $(TMP_BINDIR)/hilfe Makefile ( sed -e 's!/usr/local/bin!$(exec_prefix)!' <$(TMP_BINDIR)/hilfe \ >./hilfe && chmod 755 ./hilfe) || exit 1 ; \ else \ - $(INSTALL) $(TMP_BINDIR)/hilfe `pwd` || exit 1; \ + $(INSTALL) $(TMP_BINDIR)/hilfe `pwd`/hilfe || exit 1; \ fi @echo "Done." @@ -351,7 +351,7 @@ lib: $(LIBDIR_SRC)/master.pike.in Makefile done @if [ -d share/. ]; then : ; else \ echo "Creating symlink ./share"; \ - if ls share >/dev/null 2>&1; then \ + if [ "x`ls share 2>&1`" = "x" ]; then \ echo "Renaming share to share.old"; \ mv share share.old || exit 1; \ else : ; fi; \ -- GitLab