From: Ben Gras Date: Mon, 27 Jun 2005 10:04:55 +0000 (+0000) Subject: Gave sh more space for configure scripts; connected python to build; X-Git-Tag: v3.1.0~694 X-Git-Url: http://zhaoyanbai.com/repos/man.dnssec-verify.html?a=commitdiff_plain;h=b1fe0aa86f0dfb5ad8534dc3c8682315de9bc305;p=minix.git Gave sh more space for configure scripts; connected python to build; fixed nit in python confused about select definitions --- diff --git a/commands/Makefile b/commands/Makefile index 427557a8f..e3a6860a2 100755 --- a/commands/Makefile +++ b/commands/Makefile @@ -2,6 +2,7 @@ MAKE = exec make -$(MAKEFLAGS) GZIP=gzip-1.2.4 +PYTHON=python-1.5.2 usage: @echo "Usage: make all # Compile all commands" >&2 @@ -11,9 +12,11 @@ usage: all install:: cd $(GZIP) && ./configure --prefix=/usr && make $@ + cd $(PYTHON) && ./configure --prefix=/usr/local && make $@ clean:: - if [ -f $(GZIP)/Makefile] ; then cd $(GZIP) && make $@; fi + if [ -f $(GZIP)/Makefile ] ; then cd $(GZIP) && make $@; fi + if [ -f $(PYTHON)/Makefile ] ; then cd $(PYTHON) && make $@; fi all install clean:: cd `arch` && $(MAKE) $@ diff --git a/commands/ash/Makefile b/commands/ash/Makefile index 117686011..6ddeb5880 100755 --- a/commands/ash/Makefile +++ b/commands/ash/Makefile @@ -29,7 +29,7 @@ all: sh sh: $(OBJS) $(CC) $(CFLAGS) -o sh $(OBJS) $(LIBS) - install -S 12kw sh + install -S 28kw sh install: /usr/bin/ash /usr/bin/sh /bin/sh