diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2017-04-19 05:27:01 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2017-04-19 05:27:01 +0000 |
commit | 3200ae57cdfcb0e30ecbfd5d16e0f88e5332b4d8 (patch) | |
tree | fea31531738b7788ce4d3938fdc95a58a449e6c0 /sbin/disklabel/editor.c | |
parent | 29ba929a5dead241dcb5d985ca1493151478c2a8 (diff) |
enlarge obj to satisfy new world order that has *big* compilers and
remove condition for static linking; ok tb@
Diffstat (limited to 'sbin/disklabel/editor.c')
-rw-r--r-- | sbin/disklabel/editor.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sbin/disklabel/editor.c b/sbin/disklabel/editor.c index b8aa4a0b36b..cf3a8c535b2 100644 --- a/sbin/disklabel/editor.c +++ b/sbin/disklabel/editor.c @@ -1,4 +1,4 @@ -/* $OpenBSD: editor.c,v 1.305 2017/03/04 07:26:42 otto Exp $ */ +/* $OpenBSD: editor.c,v 1.306 2017/04/19 05:27:00 otto Exp $ */ /* * Copyright (c) 1997-2000 Todd C. Miller <Todd.Miller@courtesan.com> @@ -78,11 +78,7 @@ struct space_allocation alloc_big[] = { { MEG(512), GIG(1), 3, "/usr/X11R6" }, { GIG(2), GIG(10), 10, "/usr/local" }, { GIG(1), GIG(2), 2, "/usr/src" }, -#ifdef STATICLINKING - { MEG(2600), GIG(3), 4, "/usr/obj" }, -#else - { MEG(1300), GIG(2), 4, "/usr/obj" }, -#endif + { GIG(3), GIG(6), 4, "/usr/obj" }, { GIG(1), GIG(300), 40, "/home" } /* Anything beyond this leave for the user to decide */ }; |