scripts/install:

- move /etc/conf.d/* to /etc/profile.d/*
This commit is contained in:
Stephan Raue 2010-03-25 10:36:06 +01:00
parent 6012c365b3
commit 693d121915

View File

@ -22,9 +22,9 @@ if [ -d $PKG_DIR/init.d ]; then
cp $PKG_DIR/init.d/* $INSTALL/etc/init.d/ cp $PKG_DIR/init.d/* $INSTALL/etc/init.d/
fi fi
if [ -d $PKG_DIR/conf.d ]; then if [ -d $PKG_DIR/profile.d ]; then
mkdir -p $INSTALL/etc/conf.d mkdir -p $INSTALL/etc/profile.d
cp $PKG_DIR/conf.d/* $INSTALL/etc/conf.d/ cp $PKG_DIR/profile.d/* $INSTALL/etc/profile.d/
fi fi
$SCRIPTS/build $@ $SCRIPTS/build $@