123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- --- Makefile~ 2008-08-12 03:40:48.000000000 +0300
- +++ Makefile 2009-01-02 17:16:41.000000000 +0200
- @@ -9,16 +9,16 @@
-
- # Where to install. The installation starts in the src and doc directories,
- # so take care if INSTALL_TOP is not an absolute path.
- -INSTALL_TOP= /usr/local
- +INSTALL_TOP= /usr
- INSTALL_BIN= $(INSTALL_TOP)/bin
- INSTALL_INC= $(INSTALL_TOP)/include
- INSTALL_LIB= $(INSTALL_TOP)/lib
- -INSTALL_MAN= $(INSTALL_TOP)/man/man1
- +INSTALL_MAN= $(INSTALL_TOP)/share/man/man1
- #
- # You probably want to make INSTALL_LMOD and INSTALL_CMOD consistent with
- # LUA_ROOT, LUA_LDIR, and LUA_CDIR in luaconf.h (and also with etc/lua.pc).
- INSTALL_LMOD= $(INSTALL_TOP)/share/lua/$V
- -INSTALL_CMOD= $(INSTALL_TOP)/lib/lua/$V
- +INSTALL_CMOD= $(INSTALL_TOP)/lib
-
- # How to install. If your install program does not support "-p", then you
- # may have to run ranlib on the installed liblua.a (do "make ranlib").
- @@ -43,7 +43,7 @@
- # What to install.
- TO_BIN= lua luac
- TO_INC= lua.h luaconf.h lualib.h lauxlib.h ../etc/lua.hpp
- -TO_LIB= liblua.a
- +TO_LIB= liblua.so.$V
- TO_MAN= lua.1 luac.1
-
- # Lua version and release.
- --- etc/lua.pc~ 2008-08-08 15:46:11.000000000 +0300
- +++ etc/lua.pc 2009-01-02 17:17:32.000000000 +0200
- @@ -8,11 +8,11 @@
- R= 5.1.4
-
- # grep '^INSTALL_.*=' ../Makefile | sed 's/INSTALL_TOP/prefix/'
- -prefix= /usr/local
- +prefix= /usr
- INSTALL_BIN= ${prefix}/bin
- INSTALL_INC= ${prefix}/include
- INSTALL_LIB= ${prefix}/lib
- -INSTALL_MAN= ${prefix}/man/man1
- +INSTALL_MAN= ${prefix}/share/man/man1
- INSTALL_LMOD= ${prefix}/share/lua/${V}
- INSTALL_CMOD= ${prefix}/lib/lua/${V}
-
|