From 693d121915d626b213ee89f797d1405086569b4a Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 25 Mar 2010 10:36:06 +0100 Subject: [PATCH] scripts/install: - move /etc/conf.d/* to /etc/profile.d/* --- scripts/install | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/install b/scripts/install index b79fe78222..21e61e5982 100755 --- a/scripts/install +++ b/scripts/install @@ -22,9 +22,9 @@ if [ -d $PKG_DIR/init.d ]; then cp $PKG_DIR/init.d/* $INSTALL/etc/init.d/ fi -if [ -d $PKG_DIR/conf.d ]; then - mkdir -p $INSTALL/etc/conf.d - cp $PKG_DIR/conf.d/* $INSTALL/etc/conf.d/ +if [ -d $PKG_DIR/profile.d ]; then + mkdir -p $INSTALL/etc/profile.d + cp $PKG_DIR/profile.d/* $INSTALL/etc/profile.d/ fi $SCRIPTS/build $@