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: rpm Date: 27-Jun-2007 12:04:35
Branch: HEAD Handle: 2007062711043300
Modified files:
rpm Makefile.am autogen.sh configure.ac
Log:
finally make 'automake -Wall' happy by not overriding its 'ctags'
target and the CTAGS variable (same for CSCOPE)
Summary:
Revision Changes Path
2.180 +1 -4 rpm/Makefile.am
2.81 +1 -1 rpm/autogen.sh
2.145 +0 -2 rpm/configure.ac
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: rpm/Makefile.am
============================================================================
$ cvs diff -u -r2.179 -r2.180 Makefile.am
--- rpm/Makefile.am 27 Jun 2007 09:45:14 -0000 2.179
+++ rpm/Makefile.am 27 Jun 2007 10:04:33 -0000 2.180
@@ -204,11 +204,8 @@
mkdir -p $@
- [ X"@__DOXYGEN@" != Xno ] && @__DOXYGEN@
-ctags:
- find . -type f -name "*.[ch]*" | xargs @CTAGS@
-
cscope:
- @CSCOPE@ -b -R
+ cscope -b -R
cref: ctags cscope
@@ .
patch -p0 <<'@@ .'
Index: rpm/autogen.sh
============================================================================
$ cvs diff -u -r2.80 -r2.81 autogen.sh
--- rpm/autogen.sh 26 Jun 2007 18:49:03 -0000 2.80
+++ rpm/autogen.sh 27 Jun 2007 10:04:33 -0000 2.81
@@ -48,7 +48,7 @@
aclocal -I m4
autoheader
echo "---> generate files via GNU automake (automake)"
-automake -a -c
+automake -Wall -a -c
echo "---> generate files via GNU autoconf (autoconf)"
autoconf
echo "<=== rpm"
@@ .
patch -p0 <<'@@ .'
Index: rpm/configure.ac
============================================================================
$ cvs diff -u -r2.144 -r2.145 configure.ac
--- rpm/configure.ac 27 Jun 2007 09:45:14 -0000 2.144
+++ rpm/configure.ac 27 Jun 2007 10:04:33 -0000 2.145
@@ -45,8 +45,6 @@
AC_PROG_YACC
AC_PATH_PROG(AS, as, as)
-AC_PATH_PROG(CTAGS, ctags, /bin/true)
-AC_PATH_PROG(CSCOPE, cscope, /bin/true)
dnl # GCC specifics
AC_PROG_GCC_TRADITIONAL
@@ .
Received on Wed Jun 27 12:04:35 2007