From ba4166d17d0d8c84fbf3282440a4757abb2575f4 Mon Sep 17 00:00:00 2001 From: axel Date: Thu, 20 Jul 2006 02:58:03 +1000 Subject: [PATCH] Fix for the autoconf-changes in the porevious patch. The LOCALEDIR macro should be a regular string, not a wide string darcs-hash:20060719165803-ac50b-1b76c45b77469c0a7dbf47b866ab127bd48780e5.gz --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 01a355ea5..9625f1680 100644 --- a/Makefile.in +++ b/Makefile.in @@ -47,7 +47,7 @@ docdir = @docdir@ localedir = @localedir@ prefix = @prefix@ -CFLAGS:=@CFLAGS@ -DLOCALEDIR=L\"$(localedir)\" -DPREFIX=L\"$(prefix)\" -DDATADIR=L\"$(datadir)\" -DSYSCONFDIR=L\"$(sysconfdir)\" +CFLAGS:=@CFLAGS@ -DLOCALEDIR=\"$(localedir)\" -DPREFIX=L\"$(prefix)\" -DDATADIR=L\"$(datadir)\" -DSYSCONFDIR=L\"$(sysconfdir)\" CPPFLAGS=@CPPFLAGS@ LDFLAGS:= @LIBS@ @LDFLAGS@