diff options
author | joeyh <joeyh> | 2007-04-09 18:38:26 +0000 |
---|---|---|
committer | joeyh <joeyh> | 2007-04-09 18:38:26 +0000 |
commit | 30607d0d17a6a964dd268eae453ba21a18dc7fd8 (patch) | |
tree | 70bb3c9a63b4b69eef862ea11d959a0c3d824e56 /autoscripts | |
parent | 91c5610a519fd73e5ce3c8306c0da8926d58d054 (diff) | |
download | debhelper-30607d0d17a6a964dd268eae453ba21a18dc7fd8.tar.gz |
r1978: * dh_installudev: Don't fail if the link already somehow exists on initial
package install. Closes: #415717
Diffstat (limited to 'autoscripts')
-rw-r--r-- | autoscripts/postinst-udev | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoscripts/postinst-udev b/autoscripts/postinst-udev index e73cb010..efb84d1c 100644 --- a/autoscripts/postinst-udev +++ b/autoscripts/postinst-udev @@ -1,3 +1,3 @@ if [ "$1" = configure -a -z "$2" ]; then - ln -s ../#FILE# /etc/udev/rules.d/#PRIO##FILE# + ln -sf ../#FILE# /etc/udev/rules.d/#PRIO##FILE# fi |