summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2007-06-06 12:50:56 +0300
committerPanu Matilainen <pmatilai@redhat.com>2007-06-06 12:50:56 +0300
commit98d634bc7f5b438b9707c78194cc548ccfce12b7 (patch)
tree9e4b2108199ac89dba57833d1b6e2d49e41d2199 /lua
parentc7f7ebe61c1593049bc80651ce4db7fbbfb9a828 (diff)
downloadlibrpm-tizen-98d634bc7f5b438b9707c78194cc548ccfce12b7.tar.gz
librpm-tizen-98d634bc7f5b438b9707c78194cc548ccfce12b7.tar.bz2
librpm-tizen-98d634bc7f5b438b9707c78194cc548ccfce12b7.zip
Make peace with auto*foo.
- Remove checks for internal zlib - Don't try to auto*foo'ize nonexistent zlib, sqlite subdirs. Db3 subdir isn't auto*-enabled - Set AM_GNU_GETTEXT_VERSION to make auto"#ยค"# to realize we're using gettext - Don't stomp into auto*** namespace with LUA_SPLINT stuff (from JBJ)
Diffstat (limited to 'lua')
-rw-r--r--lua/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/Makefile.am b/lua/Makefile.am
index 26e7d69a3..72ffba878 100644
--- a/lua/Makefile.am
+++ b/lua/Makefile.am
@@ -88,7 +88,7 @@ local/linit.lch: local/linit.lua
# local/linit.c \
# lib/lstrlib.c \
#
-LUA_SPLINT_SOURCES = \
+LUA_SPLINT_SRCS = \
lua/lua.c \
include/lauxlib.h \
include/lua.h \
@@ -146,9 +146,9 @@ LUA_SPLINT_SOURCES = \
.PHONY: sources
sources:
- @echo $(LUA_SPLINT_SOURCES:%=lua/%)
+ @echo $(LUA_SPLINT_SRCS:%=lua/%)
.PHONY: lint
lint:
- $(LINT) $(DEFS) $(INCLUDES) $(LUA_SPLINT_SOURCES)
+ $(LINT) $(DEFS) $(INCLUDES) $(LUA_SPLINT_SRCS)