11b7833c93
- Lua 5.2 support (thanks Tomás Guisasola Gorham) - support for the XmlDecl handler - add parser:getcurrentbytecount() (XML_GetCurrentByteCount) - ability to disable CharacterData merging - Makefile improvements (thanks Vadim Misbakh-Soloviov)
17 lines
605 B
Text
17 lines
605 B
Text
$NetBSD: patch-Makefile,v 1.2 2014/04/07 19:39:17 fhajny Exp $
|
|
|
|
* Remove -D option of install, BSD install does not support it.
|
|
|
|
--- Makefile.orig 2014-04-02 23:30:37.000000000 +0000
|
|
+++ Makefile
|
|
@@ -27,8 +27,8 @@ src/$(LIBNAME):
|
|
$(CC) $(CF) -o $@ src/$(T)lib.c $(LF)
|
|
|
|
install:
|
|
- $(INSTALL_PROGRAM) -D src/$(LIBNAME) $(DESTDIR)$(LUA_CDIR)/$(LIBNAME)
|
|
- $(INSTALL_PROGRAM) -D src/$T/lom.lua $(DESTDIR)$(LUA_LDIR)/$T/lom.lua
|
|
+ $(INSTALL_PROGRAM) src/$(LIBNAME) $(DESTDIR)$(LUA_CDIR)/$(LIBNAME)
|
|
+ $(INSTALL_PROGRAM) src/$T/lom.lua $(DESTDIR)$(LUA_LDIR)/$T/lom.lua
|
|
|
|
clean:
|
|
$(RM) src/$(LIBNAME) $(OBJS)
|