diff options
author | Peng Huang <shawn.p.huang@gmail.com> | 2010-07-05 15:31:03 +0800 |
---|---|---|
committer | Peng Huang <shawn.p.huang@gmail.com> | 2010-07-05 15:31:03 +0800 |
commit | 9821b99fb1cfd1925e04e00e5b04184398ffcf0c (patch) | |
tree | 82a65f2c7868adc45c13c58f6fc418e6ad7a1b50 /Makefile.am | |
parent | 97dd325909f7f8293ce8651a6c04d9ae0b912a00 (diff) | |
download | ibus-libpinyin-9821b99fb1cfd1925e04e00e5b04184398ffcf0c.tar.gz ibus-libpinyin-9821b99fb1cfd1925e04e00e5b04184398ffcf0c.tar.xz ibus-libpinyin-9821b99fb1cfd1925e04e00e5b04184398ffcf0c.zip |
Disable lua extension by default
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 4bd3522..01773d6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -18,9 +18,13 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +if IBUS_BUILD_LUA_EXTENSION +LUADIR=lua +endif + SUBDIRS = \ data \ - lua \ + $(LUADIR) \ src \ setup \ m4 \ |