From df67cafd1772eb3f2f6fd370e57e4a8f0dbb5ebc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Thu, 6 Mar 2008 19:57:21 +0000 Subject: [PATCH] Hook in distro if it's there (symlink from my branch). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24278 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- 3rdparty/mmu_man/Jamfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/3rdparty/mmu_man/Jamfile b/3rdparty/mmu_man/Jamfile index f480b7dd54..2e9b0b346a 100644 --- a/3rdparty/mmu_man/Jamfile +++ b/3rdparty/mmu_man/Jamfile @@ -1,3 +1,13 @@ SubDir HAIKU_TOP 3rdparty mmu_man ; SubInclude HAIKU_TOP 3rdparty mmu_man themes ; + +# distro stuff located in my own branch, +# to use it symlink it here. +{ + local subDir + = [ GLOB [ FDirName $(HAIKU_TOP) 3rdparty mmu_man ] : distro ] ; + if $(subDir) { + SubInclude HAIKU_TOP 3rdparty mmu_man distro ; + } +}