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 23:10:22
Branch: HEAD Handle: 2007062722102200
Modified files:
rpm acinclude.m4
Log:
Avoid warnings during "configure" by not trying to configure subdirs
which do not actually have an own "configure" script (which for instance
is the case for lua/).
Summary:
Revision Changes Path
2.14 +3 -1 rpm/acinclude.m4
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: rpm/acinclude.m4
============================================================================
$ cvs diff -u -r2.13 -r2.14 acinclude.m4
--- rpm/acinclude.m4 27 Jun 2007 20:20:26 -0000 2.13
+++ rpm/acinclude.m4 27 Jun 2007 21:10:22 -0000 2.14
@@ -148,7 +148,9 @@
m4_substr([$7], 0, m4_index([$7], [:])))])
if test -d __rcl_subdir; then
AC_MSG_VERBOSE([-- activating local sub-directory: __rcl_subdir])
- AC_CONFIG_SUBDIRS(__rcl_subdir)
+ if test -f __rcl_subdir/configure; then
+ AC_CONFIG_SUBDIRS(__rcl_subdir)
+ fi
dnl # NOTICE: an internal copy of the third-party library is a tricky thing
dnl # because for the following two major reasons we cannot just extend
dnl # CPPFLAGS, LDFLAGS and LIBS in this case:
@@ .
Received on Wed Jun 27 23:10:22 2007