This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc 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]

Trivial make check fix


Noticed this while using a patch between glibc 2.3.2 and CVS - make check
failed with a permission denied since the script wasn't executable.

-- 
Daniel Jacobowitz
MontaVista Software                         Debian GNU/Linux Developer

2003-10-12  Daniel Jacobowitz  <drow@mvista.com>

	* Makefile (tests): Make sure check-c++-types.sh is executable.

Index: Makefile
===================================================================
RCS file: /big/fsf/rsync/glibc-cvs/libc/Makefile,v
retrieving revision 1.234
diff -u -p -r1.234 Makefile
--- Makefile	9 Sep 2003 02:30:15 -0000	1.234
+++ Makefile	12 Oct 2003 23:24:08 -0000
@@ -232,6 +232,7 @@ tests: $(objpfx)c++-types-check.out
 ifneq ($(CXX),no)
 ifneq (,$(wildcard scripts/data/c++-types-$(base-machine)-$(config-os).data))
 $(objpfx)c++-types-check.out: scripts/data/c++-types-$(base-machine)-$(config-os).data
+	chmod a+x scripts/check-c++-types.sh
 	scripts/check-c++-types.sh $^ $(CXX) $(filter-out -std=gnu99,$(CFLAGS)) $(CPPFLAGS) > $@
 else
 $(objpfx)c++-types-check.out:


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