summaryrefslogtreecommitdiff
blob: 131554ee57f739c34b3f3d8d176cc2449051210f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--- 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);
 		}