Skip to content
This repository has been archived by the owner on Nov 19, 2022. It is now read-only.

Commit

Permalink
2005-06-02 Ben Maurer <bmaurer@ximian.com>
Browse files Browse the repository at this point in the history
	* src/Mono.WebServer/Makefile.am: Handle gacutil and destdir
	correctly.

	* configure.in: GACUTIL flags


svn path=/trunk/xsp/; revision=45335
  • Loading branch information
Ben Maurer committed Jun 2, 2005
1 parent 1cd249a commit eb39a82
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
@@ -1,3 +1,10 @@
2005-06-02 Ben Maurer <bmaurer@ximian.com>

* src/Mono.WebServer/Makefile.am: Handle gacutil and destdir
correctly.

* configure.in: GACUTIL flags

2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>

* configure.in:
Expand Down
4 changes: 4 additions & 0 deletions configure.in
Expand Up @@ -11,6 +11,10 @@ if test "x$GACUTIL" = "xno" ; then
AC_MSG_ERROR([No gacutil tool found])
fi

GACUTIL_FLAGS='/gacdir $(prefix)/lib /root $(DESTDIR)$(prefix)/lib'

AC_SUBST(GACUTIL_FLAGS)


AC_PATH_PROG(CSC, csc, no)
AC_PATH_PROG(MCS, mcs, no)
Expand Down
4 changes: 2 additions & 2 deletions src/Mono.WebServer/Makefile.am
Expand Up @@ -34,8 +34,8 @@ Mono.WebServer.dll: $(monowebserver_build_sources) key.snk
$(MCS) $(MCSFLAGS) $(monowebserver_references) /target:library /out:$@ $(monowebserver_build_sources)

install-data-local:
$(GACUTIL) -i Mono.WebServer.dll
$(GACUTIL) $(GACUTIL_FLAGS) -i Mono.WebServer.dll

uninstall-local:
$(GACUTIL) -u Mono.WebServer
$(GACUTIL) $(GACUTIL_FLAGS) -u Mono.WebServer

0 comments on commit eb39a82

Please sign in to comment.