You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ra...@apache.org on 2012/01/07 00:47:12 UTC

[3/3] git commit: don't ln the couchjs install target on windows

don't ln the couchjs install target on windows

On windows we install binaries directly into $(prefix)/bin rather than
a local bin directory hidden away in the erlang module. Therefore, when
building this way, don't try to create a symbolic link into the final
location since the final location has the output binary already.


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/e3651ec5
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/e3651ec5
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/e3651ec5

Branch: refs/heads/master
Commit: e3651ec5d1c7e2ed75d9e70a2e71bb657eba751d
Parents: 5c2c11f
Author: Randall Leeds <ra...@apache.org>
Authored: Fri Jan 6 15:29:51 2012 -0800
Committer: Randall Leeds <ra...@apache.org>
Committed: Fri Jan 6 15:29:51 2012 -0800

----------------------------------------------------------------------
 bin/Makefile.am |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/e3651ec5/bin/Makefile.am
----------------------------------------------------------------------
diff --git a/bin/Makefile.am b/bin/Makefile.am
index 320c8a7..f391154 100644
--- a/bin/Makefile.am
+++ b/bin/Makefile.am
@@ -48,9 +48,11 @@ couchdb: couchdb.tpl
 	$@ < $<
 	chmod +x $@
 
+if !WINDOWS
 install-exec-hook:
 	$(LN_S) -f "$(locallibbindir)/$(couchjs_command_name)" \
 		"$(DESTDIR)$(bindir)/$(couchjs_command_name)"
+endif
 
 couchjs_dev:
 	$(LN_S) -f "$(abs_top_builddir)/src/couchdb/priv/couchjs" "$@"