From 664f4c2a5b180f4e49f61c61d3a05dca0cf92a80 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Fri, 12 Jul 2013 20:35:04 +0200 Subject: [PATCH] scripts/install: add support for tmpfiles.d dir Signed-off-by: Stephan Raue --- scripts/install | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/install b/scripts/install index c44351553a..30dc72dbae 100755 --- a/scripts/install +++ b/scripts/install @@ -57,6 +57,11 @@ if [ -d $PKG_DIR/profile.d ]; then cp $PKG_DIR/profile.d/*.conf $INSTALL/etc/profile.d/ fi +if [ -d $PKG_DIR/tmpfiles.d ]; then + mkdir -p $INSTALL/usr/lib/tmpfiles.d + cp $PKG_DIR/tmpfiles.d/*.conf $INSTALL/usr/lib/tmpfiles.d +fi + if [ -d $PKG_DIR/udev.d ]; then mkdir -p $INSTALL/lib/udev/rules.d cp $PKG_DIR/udev.d/*.rules $INSTALL/lib/udev/rules.d