diff options
-rw-r--r-- | Makefile.am | 3 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | license.skip | 2 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
4 files changed, 6 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index efb7ac34..0a6e7d04 100644 --- a/Makefile.am +++ b/Makefile.am @@ -10,7 +10,7 @@ ## License for the specific language governing permissions and limitations under ## the License. -SUBDIRS = bin etc src/couchdb src/erlang-oauth src/etap src/ibrowse src/mochiweb share test var utils +SUBDIRS = bin etc src share test var utils localdoc_DATA = AUTHORS.gz BUGS.gz CHANGES.gz NEWS.gz README.gz THANKS.gz @@ -66,6 +66,7 @@ local-clean: maintainer-clean rm -f $(top_srcdir)/aclocal.m4 rm -f $(top_srcdir)/config.h.in rm -f $(top_srcdir)/configure + rm -f $(top_srcdir)/test/etap/temp.* rm -f $(top_srcdir)/*.tar.gz rm -f $(top_srcdir)/*.tar.gz.* rm -fr $(top_srcdir)/tmp diff --git a/configure.ac b/configure.ac index bc7f27b2..557a6280 100644 --- a/configure.ac +++ b/configure.ac @@ -150,7 +150,6 @@ AC_ARG_WITH([win32-icu-binaries], [AC_HELP_STRING([--with-win32-icu-binaries=PAT ICU_LOCAL_BIN= ]) - AC_SUBST(ICU_CONFIG) AC_SUBST(ICU_LOCAL_CFLAGS) AC_SUBST(ICU_LOCAL_LDFLAGS) @@ -342,6 +341,7 @@ AC_CONFIG_FILES([etc/logrotate.d/couchdb.tpl]) AC_CONFIG_FILES([etc/logrotate.d/Makefile]) AC_CONFIG_FILES([etc/Makefile]) AC_CONFIG_FILES([share/Makefile]) +AC_CONFIG_FILES([src/Makefile]) AC_CONFIG_FILES([src/couchdb/couch.app.tpl]) AC_CONFIG_FILES([src/couchdb/Makefile]) AC_CONFIG_FILES([src/couchdb/priv/Makefile]) diff --git a/license.skip b/license.skip index fc366097..821b7954 100644 --- a/license.skip +++ b/license.skip @@ -50,6 +50,8 @@ ^share/www/script/json2.js ^share/www/script/sha1.js ^share/www/script/test/lorem* +^src/Makefile +^src/Makefile.in ^src/couchdb/*.beam ^src/couchdb/couch.app.tpl.in ^src/couchdb/.deps/* diff --git a/src/Makefile.am b/src/Makefile.am index 5b4faae0..b9529f94 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -10,4 +10,4 @@ ## License for the specific language governing permissions and limitations under ## the License. -## This file intentionally left blank. +SUBDIRS = couchdb erlang-oauth etap ibrowse mochiweb |