Path: utzoo!attcan!uunet!cs.utexas.edu!usc!ucsd!helios.ee.lbl.gov!nosc!cod!hall From: hall@cod.NOSC.MIL (Robert R. Hall) Newsgroups: comp.os.minix Subject: Re: 1.5.0 /usr/src/lib/string Summary: a patch for small systems Keywords: PC Minix 1.5 assembler string Message-ID: <1753@cod.NOSC.MIL> Date: 14 Jan 90 03:18:34 GMT References: <22676@princeton.Princeton.EDU> Organization: Naval Ocean Systems Center, San Diego Lines: 37 My system (an XT with 640k memory) must be what some people are referring to as small systems, because I was unable have all the files required by Makefile for /usr/src/lib/string to fit in memory all at the same time. To get the makfile to run I had to split the pipe string into separate statements. See enclosed patch for Makefile. Robert R. Hall hall@nosc.mil echo x - makefile.dif sed '/^X/s///' > makefile.dif << '/' X*** Makefile Sat Jan 13 12:13:57 1990 X--- /usr/src/lib/string/Makefile Sat Jan 13 12:11:22 1990 X*************** X*** 32,38 **** X .SUFFIXES: .s .x .o .c .y X X .x.s: X! $(CPP) -P -D$(TARGET) $*.x | $(LIBPACK) >$*.s X X objects: $(OBJS) X X--- 32,42 ---- X .SUFFIXES: .s .x .o .c .y X X .x.s: X! @echo ------------------------ $* ------------------------- X! @$(CPP) -P -D$(TARGET) $*.x > $*.i X! @sed '/^$$/d' < $*.i >$*.k X! @libpack < $*.k > $*.s X! @rm $*.i $*.k X X objects: $(OBJS) X /