2006-01-05 17:31:29 +01:00
|
|
|
source $stdenv/setup
|
|
|
|
|
|
|
|
preBuild=preBuild
|
|
|
|
|
|
|
|
preBuild() {
|
|
|
|
sed -e "s^@bash\@^$bash^g" \
|
|
|
|
< etc/hotplug/dasd.agent > etc/hotplug/dasd.agent.tmp
|
|
|
|
mv etc/hotplug/dasd.agent.tmp etc/hotplug/dasd.agent
|
|
|
|
|
|
|
|
sed -e "s^@bash\@^$bash^g" \
|
|
|
|
< etc/hotplug/tape.agent > etc/hotplug/tape.agent.tmp
|
|
|
|
mv etc/hotplug/tape.agent.tmp etc/hotplug/tape.agent
|
|
|
|
|
|
|
|
sed -e "s^@bash\@^$bash^g" \
|
2006-01-05 18:38:12 +01:00
|
|
|
"s^@gnused\@^$gnused^g" \
|
|
|
|
"s^@coreutils\@^$coreutils^g" \
|
2006-01-05 17:31:29 +01:00
|
|
|
< etc/hotplug.d/default/default.hotplug > etc/hotplug.d/default/default.hotplug.tmp
|
|
|
|
mv etc/hotplug.d/default/default.hotplug.tmp etc/hotplug.d/default/default.hotplug
|
|
|
|
}
|
|
|
|
|
|
|
|
genericBuild
|