From 474d137c39963ef3c0f4defefb22f645606bba6c Mon Sep 17 00:00:00 2001 From: Philip Homburg Date: Wed, 7 Jun 2006 15:03:42 +0000 Subject: [PATCH] Forgot include some Minix 3 specific changes. --- commands/ash/Makefile | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/commands/ash/Makefile b/commands/ash/Makefile index 37799751e..239739325 100755 --- a/commands/ash/Makefile +++ b/commands/ash/Makefile @@ -50,12 +50,12 @@ all: sh sh: $(OBJS) $(CC) $(CFLAGS) -fnone -o sh $(OBJS) $(LIBS) + install -S 100k sh -install: /usr/bin/ash /usr/bin/sh /bin/sh /usr/man/man1/ash.1 \ - /usr/man/man1/echo.1 /usr/man/man1/expr.1 +install: /usr/bin/ash /usr/bin/sh /bin/sh /bin/bigsh /usr/bin/ash: sh - install -c $? $@ + install -cs -o bin $? $@ /usr/bin/sh: /usr/bin/ash install -l $? $@ @@ -63,14 +63,8 @@ install: /usr/bin/ash /usr/bin/sh /bin/sh /usr/man/man1/ash.1 \ /bin/sh: /usr/bin/ash install -lcs $? $@ -/usr/man/man1/ash.1: sh.1 - install -lc $? $@ - -/usr/man/man1/echo.1: bltin/echo.1 - install -lc $? $@ - -/usr/man/man1/expr.1: bltin/expr.1 - install -lc $? $@ +/bin/bigsh: /usr/bin/ash + install -S 1500000 -lcs $? $@ clean: rm -f $(CLEANFILES) sh core -- 2.44.0