This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

src/gdb/gdbserver ChangeLog Makefile.in


CVSROOT:	/cvs/src
Module name:	src
Changes by:	brobecke@sourceware.org	2011-03-06 07:40:52

Modified files:
	gdb/gdbserver  : ChangeLog Makefile.in 

Log message:
	gdbserver: configure + make clean fails (no 'common' subdir)
	
	This problem was noticed during the nightly snapshot build,
	but can be reduced to:
	
	% /path/to/gdb/gdbserver/configure
	% make clean
	
	The "make clean" fails, because it tries to do a "make clean"
	in the common/ subdirectory.  But the problem is that this
	common/ subdirectory is NOT created during the configure phase,
	but rather during the build phase.  The error is fatal because
	we had put the common subdirectory in the list of REQUIRED_SUBDIRS.
	
	This fixes the problem by removing it from the REQUIRED_SUBDIRS
	list.
	
	gdb/gdbserver/ChangeLog:
	
	* Makefile.in (REQUIRED_SUBDIRS): Remove $(LIBCOMMON_DIR).

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/gdbserver/ChangeLog.diff?cvsroot=src&r1=1.464&r2=1.465
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/gdbserver/Makefile.in.diff?cvsroot=src&r1=1.105&r2=1.106


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]