2009-07-01 Pavel Roskin <proski@gnu.org>

* util/hostdisk.c (device_is_wholedisk): Compile only on systems
	where it's needed.
This commit is contained in:
proski 2009-07-01 22:56:51 +00:00
parent 999577f13c
commit 0df634200a
2 changed files with 5 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2009-07-01 Pavel Roskin <proski@gnu.org>
* util/hostdisk.c (device_is_wholedisk): Compile only on systems
where it's needed.
* Makefile.in: Install include/grub/machine symlink.
* Makefile.in: When installing symlinks, use "cp -fR", which

View File

@ -833,6 +833,7 @@ convert_system_partition_to_system_disk (const char *os_dev)
#endif
}
#if defined(__linux__) || defined(__CYGWIN__)
static int
device_is_wholedisk (const char *os_dev)
{
@ -842,6 +843,7 @@ device_is_wholedisk (const char *os_dev)
return 1;
return 0;
}
#endif
static int
find_system_device (const char *os_dev)