summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2013-08-30 16:54:46 +0000
committerjoerg <joerg@pkgsrc.org>2013-08-30 16:54:46 +0000
commit8d61108bd3cf20700d4cdfc54f21d0b29b1d754c (patch)
tree3c89d327d1cd06073c12e1e553494144d7387366 /sysutils
parent9d821e61c346c9c897737436dacfd678a636dc08 (diff)
downloadpkgsrc-8d61108bd3cf20700d4cdfc54f21d0b29b1d754c.tar.gz
Don't try to create weak symbols as the renaming isn't done.
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/bsdinstall/files/setmode.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sysutils/bsdinstall/files/setmode.c b/sysutils/bsdinstall/files/setmode.c
index 8aa1ba03a74..173d0d5f810 100644
--- a/sysutils/bsdinstall/files/setmode.c
+++ b/sysutils/bsdinstall/files/setmode.c
@@ -1,4 +1,4 @@
-/* $NetBSD: setmode.c,v 1.1 2013/08/28 11:42:36 jperkin Exp $ */
+/* $NetBSD: setmode.c,v 1.2 2013/08/30 16:54:46 joerg Exp $ */
/* NetBSD: setmode.c,v 1.33 2012/03/21 14:28:32 christos Exp */
/*
@@ -62,10 +62,12 @@ __RCSID("NetBSD: setmode.c,v 1.33 2012/03/21 14:28:32 christos Exp");
#include <stdio.h>
#endif
+#if 0
#ifdef __weak_alias
__weak_alias(getmode,_getmode)
__weak_alias(setmode,_setmode)
#endif
+#endif
#define SET_LEN 6 /* initial # of bitcmd struct to malloc */
#define SET_LEN_INCR 4 /* # of bitcmd structs to add as needed */