From 2d27d172b1c5be4aae2039a88d63821695041971 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sun, 18 Aug 2013 14:09:30 +0200 Subject: [PATCH] scripts/install: add support for 'debug.d' folders Signed-off-by: Stephan Raue --- scripts/install | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/install b/scripts/install index 55a4214158..c7ef786151 100755 --- a/scripts/install +++ b/scripts/install @@ -101,6 +101,11 @@ if [ -d $PKG_DIR/sysconf.d ]; then cp $PKG_DIR/sysconf.d/*.conf $INSTALL/etc/sysconf.d fi +if [ -d $PKG_DIR/debug.d ]; then + mkdir -p $INSTALL/usr/share/debugconf + cp $PKG_DIR/debug.d/*.conf $INSTALL/usr/share/debugconf +fi + if [ -d $PKG_DIR/init.network ]; then mkdir -p $INSTALL/etc/init.d/network cp $PKG_DIR/init.network/* $INSTALL/etc/init.d/network/