From 87b05211cf229b39613443948c8a23948e67c2d7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20Ekstr=C3=B6m?= Date: Fri, 24 Oct 2014 12:52:31 +0300 Subject: [PATCH] build-sys: symlink src/plugins/domain-control to src/domain-control. This fixes a mismatch between how domain-control's header is located and to which kind of structure it is installed when Murphy is installed. --- configure.ac | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/configure.ac b/configure.ac index 8620e87..0327584 100644 --- a/configure.ac +++ b/configure.ac @@ -647,6 +647,15 @@ AC_SUBST(MRP_DOXYDEPS, [$MRP_DOCSCRIPT_DIR/doxydeps.py]) # Shave by default. SHAVE_INIT([build-aux], [enable]) +# Create murphy symlink to match domain controller's +# placing with how it is installed. +if test ! -L murphy/domain-control; then + AC_MSG_NOTICE([Symlinking src/plugins/domain-control to src/domain-control...]) + cd src + ln -s plugins/domain-control domain-control + cd .. +fi + # Create murphy symlink to src. if test ! -L murphy; then AC_MSG_NOTICE([Symlinking src to murphy...]) -- 2.7.4