From: Message-Id: <200304201636.h3KGaP5i003613@speedy.ludd.luth.se> Subject: Re: DJASM.EXE not in bin with CVS code In-Reply-To: <000701c3063a$7ffb6ec0$0100a8c0@acp42g> "from Andrew Cottrell at Apr 19, 2003 04:11:21 pm" To: djgpp-workers AT delorie DOT com Date: Sun, 20 Apr 2003 18:36:25 +0200 (CEST) X-Mailer: ELM [version 2.4ME+ PL78 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-MailScanner: Found to be clean Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk According to Andrew Cottrell: > Problem:- > In building the CVS LIBC I spotted a problem where djasm.exe is created in > the hostbin directory, but not in the bin directory. > > Quick Work arround:- > Manually do a "make all" in the djasm directory. This seems to correct it: Index: djgpp/src/djasm/makefile =================================================================== RCS file: /cvs/djgpp/djgpp/src/djasm/makefile,v retrieving revision 1.1 diff -p -u -r1.1 makefile --- djgpp/src/djasm/makefile 24 Feb 2003 16:55:17 -0000 1.1 +++ djgpp/src/djasm/makefile 20 Apr 2003 16:31:00 -0000 @@ -6,7 +6,7 @@ TOP = . EXTRA_FILES += $(INFO)/djasm.info -include ../makefile.prg +include ../makefile.inc # djasm.y would be killed by -Werror -Wall, so let's relax a bit: XGCC = $(XLGCC) Patch deduced by comparing stub/makefile with djasm/makefile. Looks like a mistake I did when splitting away djasm. Right, MartinS