From d3b1f11a47691254c8e5572a9a70fb9be94db8c6 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Thu, 31 Aug 2000 22:02:46 +0000 Subject: [PATCH] Fix BeOS check in the libainstall target; noted by Mark Favas . --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index c84e96b82f..8d4b96f809 100644 --- a/Makefile.in +++ b/Makefile.in @@ -405,7 +405,7 @@ libainstall: all echo; echo "See Misc/AIX-NOTES for details."; \ else true; \ fi - @if [ "$(MACHDEP)" == "beos" ] ; then \ + @if [ "$(MACHDEP)" = "beos" ] ; then \ echo; echo "Installing support files for building shared extension modules on BeOS:"; \ $(INSTALL_DATA) BeOS/README $(LIBPL)/README; \ echo; echo "$(LIBPL)/README"; \ -- 2.50.1