From f46b1352fd5d8ffdf900c32e2571c97320d3f8ac Mon Sep 17 00:00:00 2001 From: Armijn Hemel Date: Thu, 5 Jan 2006 17:41:15 +0000 Subject: [PATCH] use correct sed commands svn path=/nixpkgs/trunk/; revision=4494 --- pkgs/os-specific/linux/hotplug/builder.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/hotplug/builder.sh b/pkgs/os-specific/linux/hotplug/builder.sh index 2a63abd5cc7..a7646eaa9b5 100644 --- a/pkgs/os-specific/linux/hotplug/builder.sh +++ b/pkgs/os-specific/linux/hotplug/builder.sh @@ -12,8 +12,8 @@ preBuild() { mv etc/hotplug/tape.agent.tmp etc/hotplug/tape.agent sed -e "s^@bash\@^$bash^g" \ - "s^@gnused\@^$gnused^g" \ - "s^@coreutils\@^$coreutils^g" \ + -e "s^@gnused\@^$gnused^g" \ + -e "s^@coreutils\@^$coreutils^g" \ < 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 }