changeset 9499:5d136ebd8610

Fix a build error when someone uses "make maintainer-clean".
author Bruno Haible <bruno@clisp.org>
date Mon, 03 Dec 2007 12:58:14 +0100
parents a2c450a3023c
children 4c535eec83bd
files ChangeLog lib/unictype/pr_byname.c lib/unictype/scripts.c
diffstat 3 files changed, 11 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+	* lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
+	pr_byname.h. Needed for the rare case when the maintainer has done
+	"make maintainer-clean" in the source directory and then attempts a
+	build outside the source directory.
+	* lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
+	scripts_byname.h.
+
 2007-12-02  Martin Lambers <marlam@marlam.de>
             Bruno Haible  <bruno@clisp.org>
 
--- a/lib/unictype/pr_byname.c
+++ b/lib/unictype/pr_byname.c
@@ -23,7 +23,7 @@
 #include <string.h>
 
 /* Get gperf generated lookup function.  */
-#include "pr_byname.h"
+#include "unictype/pr_byname.h"
 
 static const uc_property_t UC_PROPERTY_NONE = { NULL };
 
--- a/lib/unictype/scripts.c
+++ b/lib/unictype/scripts.c
@@ -23,7 +23,7 @@
 #include <string.h>
 
 #include "scripts.h"
-#include "scripts_byname.h"
+#include "unictype/scripts_byname.h"
 
 const uc_script_t *
 uc_script (ucs4_t uc)