mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
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.
This commit is contained in:
parent
6d02097924
commit
a8d9bf8d07
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ PKG_CHECK_MODULES(MONO_DEPENDENCY, mono >= $MONO_REQUIRED_VERSION, has_mono=true
|
||||||
AM_PROG_LIBTOOL
|
AM_PROG_LIBTOOL
|
||||||
|
|
||||||
if test "x$has_mono" = "xtrue"; then
|
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
|
GENERATED_SOURCES=generated/*.cs
|
||||||
AC_PATH_PROG(MONO, mono, no)
|
AC_PATH_PROG(MONO, mono, no)
|
||||||
AC_PATH_PROG(CSC, gmcs, no)
|
AC_PATH_PROG(CSC, gmcs, no)
|
||||||
|
|
Loading…
Reference in a new issue