diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | debian/patches/MAKEDEV.patch | 18 | ||||
-rw-r--r-- | debian/patches/series | 1 |
3 files changed, 21 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 64540dee..972caf01 100644 --- a/debian/changelog +++ b/debian/changelog @@ -14,6 +14,8 @@ hurd (20090404-2) unreleased; urgency=low dependencies. * debian/rules: Add --add-udeb="hurd-udeb" option to dh_makeshlibs invocation for the hurd package, to fix udeb dependency generation. + * debian/patches/MAKEDEV.patch: New patch to use bash for MAKEDEV. + (Closes: Bug#548587) -- Samuel Thibault <sthibault@debian.org> Sun, 23 Aug 2009 19:35:58 +0200 diff --git a/debian/patches/MAKEDEV.patch b/debian/patches/MAKEDEV.patch new file mode 100644 index 00000000..50e0d87a --- /dev/null +++ b/debian/patches/MAKEDEV.patch @@ -0,0 +1,18 @@ +commit 4d2e9c98b5b886d80fb7396aef89ca50b0d5fcfe +Author: Samuel Thibault <samuel.thibault@ens-lyon.org> +Date: Sun Sep 27 23:33:29 2009 +0200 + + Use #!/bin/bash instead of #!/bin/sh + + The script makes big use of bashisms. + +diff --git a/sutils/MAKEDEV.sh b/sutils/MAKEDEV.sh +index c9bd209..260e93b 100644 +--- a/sutils/MAKEDEV.sh ++++ b/sutils/MAKEDEV.sh +@@ -1,4 +1,4 @@ +-#!/bin/sh ++#!/bin/bash + # + # Make standard devices + # diff --git a/debian/patches/series b/debian/patches/series index a83c5727..f769f1c1 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -27,3 +27,4 @@ extern_inline_fix.patch -p1 exec_fix.patch -p0 libpthread_recursive_mutex_initializer.patch -p0 pfinet-gcc-4.3-fix.patch -p1 +MAKEDEV.patch -p1 |