www.digitalmars.com         C & C++   DMDScript  

digitalmars.D - Broken win32.mak in git HEAD

reply ollie <ollie home.net> writes:
In the win32.mak file under the clean tag :

clean:
	$(DEL) *.obj
	$(DEL) total.sym
	$(DEL) msgs.h msgs.c
	$(DEL) elxxx.c cdxxx.c optab.c debtab.c fltables.c tytab.c
	$(DEL) impcnvtab.c
	$(DEL) id.h id.c
	$(DEL) verstr.h
	cd $(CPPUNIT)\src\cppunit
	$(MAKE) clean

"cd $(CPPUNIT)\src\cppunit" was removed but the follow on line "$(MAKE) 
clean" was left in.  It errors on that line and should probably be removed.

Thanks,

ollie
Jun 18 2013
next sibling parent reply "Andrej Mitrovic" <andrej.mitrovich gmail.com> writes:
On Tuesday, 18 June 2013 at 15:47:49 UTC, ollie wrote:
 In the win32.mak file under the clean tag :

 clean:
 	$(DEL) *.obj
 	$(DEL) total.sym
 	$(DEL) msgs.h msgs.c
 	$(DEL) elxxx.c cdxxx.c optab.c debtab.c fltables.c tytab.c
 	$(DEL) impcnvtab.c
 	$(DEL) id.h id.c
 	$(DEL) verstr.h
 	cd $(CPPUNIT)\src\cppunit
 	$(MAKE) clean

 "cd $(CPPUNIT)\src\cppunit" was removed but the follow on line 
 "$(MAKE)
 clean" was left in.  It errors on that line and should probably 
 be removed.

 Thanks,

 ollie
It was removed together with the pull: https://github.com/D-Programming-Language/dmd/blob/master/src/win32.mak Perhaps you had a bad rebase locally?
Jun 18 2013
next sibling parent James <nooktabletjb gmail.com> writes:
On Tue, 18 Jun 2013 17:54:13 +0200, Andrej Mitrovic wrote:

 
 It was removed together with the pull:
 https://github.com/D-Programming-Language/dmd/blob/master/src/win32.mak
 
 Perhaps you had a bad rebase locally?
I also did a fresh clone to double check. Same problem.
Jun 18 2013
prev sibling parent ollie <ollie home.net> writes:
On Tue, 18 Jun 2013 17:54:13 +0200, Andrej Mitrovic wrote:

 
 It was removed together with the pull:
 https://github.com/D-Programming-Language/dmd/blob/master/src/win32.mak
 
 Perhaps you had a bad rebase locally?
clean: $(DEL) *.obj $(DEL) total.sym $(DEL) msgs.h msgs.c $(DEL) elxxx.c cdxxx.c optab.c debtab.c fltables.c tytab.c $(DEL) impcnvtab.c $(DEL) id.h id.c $(DEL) verstr.h $(MAKE) clean The "$(MAKE) clean" is still in the file. The change directory has been removed but the subsequent make clean borks because the directory it was changed to is gone now. Thanks, ollie
Jun 18 2013
prev sibling parent "Daniel Murphy" <yebblies nospamgmail.com> writes:
"ollie" <ollie home.net> wrote in message 
news:kppvf4$49m$1 digitalmars.com...
 In the win32.mak file under the clean tag :

 "cd $(CPPUNIT)\src\cppunit" was removed but the follow on line "$(MAKE)
 clean" was left in.  It errors on that line and should probably be 
 removed.
Yeah sorry, this was me. I opened a pull to fix it. https://github.com/D-Programming-Language/dmd/pull/2211
Jun 18 2013