From b6947c0ba7c965de1614e491c37c8e0333de9e94 Mon Sep 17 00:00:00 2001 From: Paul Joseph Davis Date: Tue, 18 Aug 2009 04:27:07 +0000 Subject: Fixing make distcheck errors. git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@805272 13f79535-47bb-0310-9956-ffa450edef68 --- Makefile.am | 8 ++++---- etc/couchdb/Makefile.am | 8 ++++++-- license.skip | 1 + src/couchdb/Makefile.am | 21 +-------------------- src/couchdb/priv/Makefile.am | 25 ++++++++++++++++++++++++- 5 files changed, 36 insertions(+), 27 deletions(-) diff --git a/Makefile.am b/Makefile.am index 6ea817c7..d26b4447 100644 --- a/Makefile.am +++ b/Makefile.am @@ -49,11 +49,11 @@ cover: dev dev: all @echo "This command is intended for developers to use;" @echo "it creates development ini files as well as a" - @echo "$(top_srcdir)/tmp structure for development runtime files." + @echo "./tmp structure for development runtime files." @echo "Use ./utils/run to launch CouchDB from the source tree." - mkdir -p $(top_srcdir)/tmp/lib - mkdir -p $(top_srcdir)/tmp/log - mkdir -p $(top_srcdir)/tmp/run + mkdir -p ./tmp/lib + mkdir -p ./tmp/log + mkdir -p ./tmp/run .PHONY: local-clean local-clean: maintainer-clean diff --git a/etc/couchdb/Makefile.am b/etc/couchdb/Makefile.am index 253634de..805274c4 100644 --- a/etc/couchdb/Makefile.am +++ b/etc/couchdb/Makefile.am @@ -56,8 +56,12 @@ default_dev.ini: default.ini.tpl -e "s|%couchjs_command_name%|$(couchjs_dev_command_name)|g" \ < $< > $@ -local_dev.ini: - cp local.ini $@ +# Noah said to not specify local.ini but it borks +# VPATH builds that make distcheck uses. +local_dev.ini: local.ini + if test ! -f "$@"; then \ + cp $< $@; \ + fi install-data-hook: if test ! -f "$(DESTDIR)$(localconfdir)/local.ini"; then \ diff --git a/license.skip b/license.skip index 15cfcc98..bb57c425 100644 --- a/license.skip +++ b/license.skip @@ -55,6 +55,7 @@ ^src/couchdb/Makefile ^src/couchdb/Makefile.in ^src/couchdb/*.o +^src/couchdb/priv/.deps/* ^src/couchdb/priv/Makefile ^src/couchdb/priv/Makefile.in ^src/couchdb/priv/couchspawnkillable diff --git a/src/couchdb/Makefile.am b/src/couchdb/Makefile.am index a7ab54ef..13b20c10 100644 --- a/src/couchdb/Makefile.am +++ b/src/couchdb/Makefile.am @@ -39,15 +39,10 @@ couchjs_CFLAGS = $(CURL_CFLAGS) couchjs_LDADD = $(CURL_LDFLAGS) if WINDOWS -priv_couchspawnkillable_SOURCES = priv/couchspawnkillable_win.c -couchpriv_PROGRAMS = priv/couchspawnkillable couch_erl_driver_la_LDFLAGS += -no-undefined - # copy ICU dlls for the erlang driver -dist_couch_erl_driver_la_DATA=$(ICU_LOCAL_BIN)/icuuc42.dll $(ICU_LOCAL_BIN)/icudt42.dll $(ICU_LOCAL_BIN)/icuin42.dll +#dist_couch_erl_driver_la_DATA=$(ICU_LOCAL_BIN)/icuuc42.dll $(ICU_LOCAL_BIN)/icudt42.dll $(ICU_LOCAL_BIN)/icuin42.dll couch_erl_driver_ladir=$(bindir) -else -couchpriv_PROGRAMS=priv/couchspawnkillable endif couchinclude_DATA = couch_db.hrl @@ -206,26 +201,12 @@ couch.app: couch.app.tpl %.beam: %.erl couch_db.hrl $(ERLC) $(ERLC_FLAGS) ${TEST} $<; -if !WINDOWS -priv/couchspawnkillable: priv/couchspawnkillable.sh - cp $< $@ -endif - install-data-hook: if test -f "$(DESTDIR)$(couchprivlibdir)/couch_erl_driver"; then \ rm -f "$(DESTDIR)$(couchprivlibdir)/couch_erl_driver.so"; \ cd "$(DESTDIR)$(couchprivlibdir)" && \ $(LN_S) couch_erl_driver couch_erl_driver.so; \ fi -if WINDOWS -# libtool and automake have defeated markh. For each of our executables -# we end up with 2 copies - one directly in the 'target' folder (eg, 'priv') -# and another - the correct one - in .libs. The former doesn't work but is -# what gets installed for 'couchspawnkillable' - but the correct one for -# couchjs.exe *does* get copied. *shrug* So just clobber it with the -# correct one here... See bug COUCHDB-439 - $(INSTALL) priv/.libs/couchspawnkillable.exe "$(DESTDIR)$(couchprivdir)/couchspawnkillable.exe" -endif uninstall-local: if test -f "$(DESTDIR)$(couchprivlibdir)/couch_erl_driver"; then \ diff --git a/src/couchdb/priv/Makefile.am b/src/couchdb/priv/Makefile.am index 5b4faae0..cfac5954 100644 --- a/src/couchdb/priv/Makefile.am +++ b/src/couchdb/priv/Makefile.am @@ -10,4 +10,27 @@ ## License for the specific language governing permissions and limitations under ## the License. -## This file intentionally left blank. +couchprivdir = $(couchlibdir)/priv + +EXTRA_DIST = couchspawnkillable.sh + +couchpriv_PROGRAMS = couchspawnkillable +if WINDOWS +couchspawnkillable_SOURCES = couchspawnkillable_win.c +endif + +if !WINDOWS +couchspawnkillable: couchspawnkillable.sh + cp $< $@ +endif + +if WINDOWS +install-data-hook: +# libtool and automake have defeated markh. For each of our executables +# we end up with 2 copies - one directly in the 'target' folder (eg, 'priv') +# and another - the correct one - in .libs. The former doesn't work but is +# what gets installed for 'couchspawnkillable' - but the correct one for +# couchjs.exe *does* get copied. *shrug* So just clobber it with the +# correct one here... See bug COUCHDB-439 + $(INSTALL) .libs/couchspawnkillable.exe "$(DESTDIR)$(couchprivdir)/couchspawnkillable.exe" +endif -- cgit v1.2.3