You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-analyzer/slurm/files/slurm-0.3.3-theme.patch

17 lines
492 B

--- a/theme.c
+++ b/theme.c
@@ -70,13 +70,7 @@
if ((f = fopen(filename, "r")) == NULL)
{
bzero(&filename, BUFSIZ);
-#ifdef __NetBSD__
- snprintf(filename, BUFSIZ, "/usr/pkg/share/slurm/%s.theme", name);
-#elif __Debian__
snprintf(filename, BUFSIZ, "/usr/share/slurm/%s.theme", name);
-#else
- snprintf(filename, BUFSIZ, "/usr/local/share/slurm/%s.theme", name);
-#endif
if ((f = fopen(filename, "r")) == NULL)
error(ERR_FATAL, "cannot find theme '%s'", name);
}