From a8d9bf8d0792a7c7606bf221b50dfefb72b715e2 Mon Sep 17 00:00:00 2001 From: Gabriel Burt Date: Tue, 12 Jan 2010 12:35:55 +0100 Subject: [PATCH] Change the gacdir from $(libdir) to $(prefix)/lib On SUSE* distros at least, the Mono GAC is at /usr/lib/mono even on 64 bit installs where libdir is /usr/lib64. Fixes bug #606680. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 8c196039f1..04ce162483 100644 --- a/configure.ac +++ b/configure.ac @@ -24,7 +24,7 @@ PKG_CHECK_MODULES(MONO_DEPENDENCY, mono >= $MONO_REQUIRED_VERSION, has_mono=true AM_PROG_LIBTOOL if test "x$has_mono" = "xtrue"; then - GACUTIL_FLAGS='/package $(PACKAGE_VERSION) /gacdir $(libdir) /root $(DESTDIR)/$(libdir)' + GACUTIL_FLAGS='/package $(PACKAGE_VERSION) /gacdir $(prefix)/lib /root $(DESTDIR)/$(prefix)/lib' GENERATED_SOURCES=generated/*.cs AC_PATH_PROG(MONO, mono, no) AC_PATH_PROG(CSC, gmcs, no)