diff options
author | Akira TAGOH <akira@tagoh.org> | 2012-03-16 16:29:53 +0900 |
---|---|---|
committer | Akira TAGOH <akira@tagoh.org> | 2012-03-16 16:34:37 +0900 |
commit | 93460f93e9e55e39a42fb6474918f31539436d9c (patch) | |
tree | c2cc6c53091a84386292e8f3de2266c32ad86832 /fc-case | |
parent | f2813ffc689fb6972ff4d5d414c3abfa3e0be26f (diff) |
Fix a build issue due to the use of non-portable variables
$< isn't supported in BSD make say. $(RM) is pre-defined in GNU make
though, not in BSD make say. so changed to check on configure if it's
pre-defined by make, otherwise set the appropriate command to $(RM).
This would be a workaround until it has the certain pre-defined value.
Diffstat (limited to 'fc-case')
-rw-r--r-- | fc-case/Makefile.am | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fc-case/Makefile.am b/fc-case/Makefile.am index de657afa..ad5dc74b 100644 --- a/fc-case/Makefile.am +++ b/fc-case/Makefile.am @@ -33,10 +33,8 @@ noinst_PROGRAMS=fc-case noinst_HEADERS=$(TARG) -fc_case_SRCS= \ - fc-case.c \ - fccaseint.h \ - fccaseread.c +fc_case_SOURCES= \ + fc-case.c CASEFOLDING=CaseFolding.txt SCASEFOLDING=${top_srcdir}/fc-case/CaseFolding.txt |