mirror of
https://github.com/MariaDB/server.git
synced 2026-04-20 15:25:33 +02:00
Part of the fixes for bug#49022
Plugins included into bin release cannot be
installed on debug version of server
IF the build process was split into separate "debug" and
"optimized" builds
AND
the plugin files of the debug build got copied into
"plugin/debug/"
(both is done for MySQL release builds starting from 5.5.3),
THEN these debug plugin files are to be included in the
final binary package.
This change deals with the inclusion only,
the other parts are done in different changesets.
This commit is contained in:
parent
35f5e9c78c
commit
c2676e2b5d
1 changed files with 6 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright (C) 2005-2006 MySQL AB
|
||||
# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
|
|
@ -24,5 +24,10 @@ EXTRA_DIST = fulltext/configure.in
|
|||
SUBDIRS = @mysql_pg_dirs@
|
||||
DIST_SUBDIRS = @mysql_pg_distdirs@
|
||||
|
||||
# As of 5.5.3-m3, we want to include the plugin files of a debug build in the package
|
||||
install-exec-hook:
|
||||
$(mkinstalldirs) $(DESTDIR)$(pkglibdir) $(DESTDIR)$(pkglibdir)/plugin
|
||||
test ! -d debug || $(TAR) cf - debug | ( cd $(DESTDIR)$(pkglibdir) && $(TAR) xvf - )
|
||||
|
||||
# Don't update the files from bitkeeper
|
||||
%::SCCS/s.%
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue