From mboxrd@z Thu Jan 1 00:00:00 1970 From: Miguel Bolanos Subject: Re: Broken-up patch #14 Date: Tue, 01 Jun 2004 07:30:03 -0600 Sender: linux-8086-owner@vger.kernel.org Message-ID: <1086067973.3226.4.camel@talena.hsol.net> References: <20040528233218.7778.qmail@web51305.mail.yahoo.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-L/ekOGFTs7oXS91uE34G" Return-path: In-Reply-To: <20040528233218.7778.qmail@web51305.mail.yahoo.com> List-Id: To: Tommy McCabe Cc: linux-8086@vger.kernel.org --=-L/ekOGFTs7oXS91uE34G Content-Type: text/plain Content-Transfer-Encoding: 7bit Greetings, Enabled bc, and keeped fbc fix. Please refer to my patch attached. best wishes Mike On Fri, 2004-05-28 at 17:32, Tommy McCabe wrote: > Copies the right file. > > diff -ruN ./elks-stuff/elkscmd/bc/Makefile > ./elks/elkscmd/bc/Makefile > --- ./elks-stuff/elkscmd/bc/Makefile 2004-05-28 > 16:02:01.000000000 -0400 > +++ ./elks/elkscmd/bc/Makefile 2004-04-21 > 17:43:20.000000000 -0400 > @@ -90,7 +90,7 @@ > install -c -o bin $? $@ > > rfs: all > - cp -p bc $(TARGET_MNT)/bin > + cp -p fbc $(TARGET_MNT)/bin > > min_rfs: all > > > > > > __________________________________ > Do you Yahoo!? > Friends. Fun. Try the all-new Yahoo! Messenger. > http://messenger.yahoo.com/ > - > To unsubscribe from this list: send the line "unsubscribe linux-8086" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > --=-L/ekOGFTs7oXS91uE34G Content-Disposition: attachment; filename=elkscmd-bc.patch Content-Type: text/x-patch; name=elkscmd-bc.patch; charset=UTF-8 Content-Transfer-Encoding: 7bit --- elkscmd.orig/bc/Makefile 2004-05-31 23:08:13.000000000 -0600 +++ elkscmd/bc/Makefile 2004-05-31 23:31:10.000000000 -0600 @@ -11,7 +11,7 @@ MIN_BIN = MIN_LIB = MIN_SBIN = -MIN_USR_BIN = fbc +MIN_USR_BIN = fbc bc MIN_USR_LIB = MIN_USR_MAN = MIN_USR_SBIN = @@ -62,7 +62,7 @@ SUBDIRS = Examples Test -all: fbc +all: fbc bc bc: $& config.h bc.o $(OFILES) global.o $(CC) -o bc $(LDFLAGS) bc.o $(OFILES) global.o @@ -91,6 +91,7 @@ rfs: all cp -p bc $(TARGET_MNT)/bin + cp -p fbc $(TARGET_MNT)/bin min_rfs: all --=-L/ekOGFTs7oXS91uE34G--