From 4e120c00f7179b6d284df9cc83efe909f10c509a Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 12 May 2010 19:47:25 +0000 Subject: Use LC_ALL for sed too since apparently some platforms play silly games in other locales. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 1c25d8ff..61461eaa 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.158 2010-04-23 07:38:36 nicm Exp $ +# $Id: Makefile,v 1.159 2010-05-12 19:47:25 nicm Exp $ # # Copyright (c) 2009 Nicholas Marriott # @@ -53,7 +53,7 @@ INSTALLDIR= ${INSTALL} -d INSTALLBIN= ${INSTALL} -m 555 INSTALLMAN= ${INSTALL} -m 444 -SRCS!= echo *.c|sed 's|osdep-[a-z0-9]*.c||g' +SRCS!= echo *.c|LC_ALL=C sed 's|osdep-[a-z0-9]*.c||g' .include "config.mk" OBJS= ${SRCS:S/.c/.o/} -- cgit