RPM Package Manager, CVS Repository
http://rpm5.org/cvs/
____________________________________________________________________________
Server: rpm5.org Name: Ralf S. Engelschall
Root: /v/rpm/cvs Email: rse@rpm5.org
Module: lua Date: 15-Jul-2007 20:08:02
Branch: HEAD Handle: 2007071519080200
Modified files:
lua Makefile.am
Log:
Oh, I totally forgot about this nasty CVS shortcoming: if once in the
history a sub-directory named "lua" existed, one cannot build a file
named "lua" as "cvs update" will horribly complain (background: CVS
actually created the subdir, then determines that it is empty on HEAD
and removes it again).
Summary:
Revision Changes Path
1.14 +7 -7 lua/Makefile.am
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: lua/Makefile.am
============================================================================
$ cvs diff -u -r1.13 -r1.14 Makefile.am
--- lua/Makefile.am 15 Jul 2007 18:02:32 -0000 1.13
+++ lua/Makefile.am 15 Jul 2007 18:08:02 -0000 1.14
@@ -1,6 +1,6 @@
noinst_LTLIBRARIES = liblua.la
-noinst_PROGRAMS = lua luac bin2c
+noinst_PROGRAMS = rpmlua rpmluac bin2c
EXTRA_DIST = \
COPYRIGHT \
@@ -13,12 +13,12 @@
-I$(srcdir)/local \
-I$(srcdir)
-lua_SOURCES = lua.c
-lua_CFLAGS =
-lua_LDADD = liblua.la
-luac_SOURCES = luac.c print.c
-luac_CFLAGS =
-luac_LDADD = liblua.la
+rpmlua_SOURCES = lua.c
+rpmlua_CFLAGS =
+rpmlua_LDADD = liblua.la
+rpmluac_SOURCES = luac.c print.c
+rpmluac_CFLAGS =
+rpmluac_LDADD = liblua.la
bin2c_SOURCES = bin2c.c
bin2c_CFLAGS =
bin2c_LDADD =
@@ .
Received on Sun Jul 15 20:08:02 2007