summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChoe Hwanjin <choe.hwanjin@gmail.com>2010-12-26 21:54:23 +0900
committerChoe Hwanjin <choe.hwanjin@gmail.com>2010-12-26 21:54:23 +0900
commite2259d4f98c310661165b4e7748546a5cbbaae2f (patch)
tree5f5d8bce22433989fd4dca53194f2cc8bea025c4
parentcb8c652a9eef94134c11474396a92335174a8b95 (diff)
downloadlibhangul-e2259d4f98c310661165b4e7748546a5cbbaae2f.tar.gz
헤더 참조 경로를 상대 경로로 바꿈
configure 디렉토리가 소스 디렉토리와 다른 경우에 에러가 발생한다. make distcheck를 하면 에러난다. $(top_srcdir)을 써도 되는데, 그냥 쉽게 상대 경로로 참조하도록 수정한다. git-svn-id: http://kldp.net/svn/hangul/libhangul/trunk@245 8f00fcd2-89fc-0310-932e-b01be5b65e01
-rw-r--r--tools/Makefile.am1
-rw-r--r--tools/hangul.c2
2 files changed, 1 insertions, 2 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 29e4fe9..ea26175 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -1,6 +1,5 @@
bin_PROGRAMS = hangul
-hangul_CFLAGS = -I../hangul
hangul_SOURCES = hangul.c
hangul_LDADD = ../hangul/libhangul.la
diff --git a/tools/hangul.c b/tools/hangul.c
index a12e882..0d4f5a8 100644
--- a/tools/hangul.c
+++ b/tools/hangul.c
@@ -13,7 +13,7 @@
#include <iconv.h>
-#include <hangul.h>
+#include "../hangul/hangul.h"
#define _(x) (x)