diff options
author | Sergey Matveychuk <sem@FreeBSD.org> | 2008-12-12 18:11:25 +0000 |
---|---|---|
committer | Sergey Matveychuk <sem@FreeBSD.org> | 2008-12-12 18:11:25 +0000 |
commit | b9219dca4dabdeb15d3a25010d0d0a6e450da739 (patch) | |
tree | 3a46de059042768e6db16f1a3b11a878b6d0964b /sysutils/grub | |
parent | 55422598cf11b2c1c86356d61f957da43f2e5360 (diff) | |
download | ports-b9219dca4dabdeb15d3a25010d0d0a6e450da739.tar.gz ports-b9219dca4dabdeb15d3a25010d0d0a6e450da739.zip |
Notes
Diffstat (limited to 'sysutils/grub')
-rw-r--r-- | sysutils/grub/Makefile | 2 | ||||
-rw-r--r-- | sysutils/grub/files/patch-lib-device.c | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/sysutils/grub/Makefile b/sysutils/grub/Makefile index b5e4dc5ab134..68087453f949 100644 --- a/sysutils/grub/Makefile +++ b/sysutils/grub/Makefile @@ -7,7 +7,7 @@ PORTNAME= grub PORTVERSION= 0.97 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils MASTER_SITES= ftp://alpha.gnu.org/gnu/grub/ diff --git a/sysutils/grub/files/patch-lib-device.c b/sysutils/grub/files/patch-lib-device.c new file mode 100644 index 000000000000..324ecef13c53 --- /dev/null +++ b/sysutils/grub/files/patch-lib-device.c @@ -0,0 +1,11 @@ +--- lib/device.c.orig 2008-12-09 22:44:39.000000000 +0100 ++++ lib/device.c 2008-12-09 22:45:41.000000000 +0100 +@@ -713,7 +713,7 @@ + #endif /* __linux__ */ + + /* IDE disks. */ +- for (i = 0; i < 8; i++) ++ for (i = 0; i < 20; i++) + { + char name[16]; + |