]> Zhao Yanbai Git Server - minix.git/commitdiff
Gave sh more space for configure scripts; connected python to build;
authorBen Gras <ben@minix3.org>
Mon, 27 Jun 2005 10:04:55 +0000 (10:04 +0000)
committerBen Gras <ben@minix3.org>
Mon, 27 Jun 2005 10:04:55 +0000 (10:04 +0000)
fixed nit in python confused about select definitions

commands/Makefile
commands/ash/Makefile

index 427557a8f56a70d1d6d1f8af492fab70a7e8254d..e3a6860a29648bcea57706bf44e3f367c5e217d2 100755 (executable)
@@ -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) $@
index 117686011b7b81b3429d0a521d46784d95ffc959..6ddeb588060aa130e541badc345e6044605acd68 100755 (executable)
@@ -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