mirror of
git://slackware.nl/current.git
synced 2024-12-31 10:28:29 +01:00
10 lines
342 B
Text
10 lines
342 B
Text
|
# Add profile scripts
|
||
|
mkdir -p $PKG/etc/profile.d
|
||
|
cat $CWD/post-install/kde-baseapps/profile.d/kde.sh \
|
||
|
| sed -e "s#/lib/#/lib${LIBDIRSUFFIX}/#" \
|
||
|
> $PKG/etc/profile.d/kde.sh
|
||
|
cat $CWD/post-install/kde-baseapps/profile.d/kde.csh \
|
||
|
| sed -e "s#/lib/#/lib${LIBDIRSUFFIX}/#" \
|
||
|
> $PKG/etc/profile.d/kde.csh
|
||
|
chmod 0755 $PKG/etc/profile.d/*
|