This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


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

Set LANGUAGE=C LC_ALL=C for make install


If LANGUAGE=C LC_ALL=C is recommended for make install, why not set
them for make install in Makefile? Here is a patch.

-- 
H.J. Lu (hjl@valinux.com)
---
2000-11-10  H.J. Lu  <hjl@gnu.org>

	* Makefile.in (install): Set LANGUAGE=C LC_ALL=C.

Index: Makefile.in
===================================================================
RCS file: /work/cvs/gnu/glibc/Makefile.in,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 Makefile.in
--- Makefile.in	2000/05/21 21:10:56	1.1.1.1
+++ Makefile.in	2000/11/11 05:17:20
@@ -12,3 +12,7 @@ srcdir = @srcdir@
 
 all .DEFAULT:
 	$(MAKE) -r PARALLELMFLAGS="$(PARALLELMFLAGS)" CVSOPTS="$(CVSOPTS)" -C $(srcdir) objdir=`pwd` $@
+
+install:
+	LANGUAGE=C LC_ALL=C; export LANGUAGE LC_ALL; \
+	$(MAKE) -r PARALLELMFLAGS="$(PARALLELMFLAGS)" CVSOPTS="$(CVSOPTS)" -C $(srcdir) objdir=`pwd` $@

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