Merge pull request #142 from plexinc/upstream-pr

config/functions : allow to have a per distro functions script
This commit is contained in:
MilhouseVH 2016-04-12 23:32:03 +01:00
commit 621231785c

View File

@ -471,3 +471,8 @@ debug_strip() {
$STRIP `find $* -type f -executable 2>/dev/null` 2>/dev/null || :
fi
}
# Use distribution functions if any
if [ -f "distributions/$DISTRO/config/functions" ]; then
. distributions/$DISTRO/config/functions
fi