svn commit: r212029 - head/usr.sbin/pkg_install/add

Nathan Whitehorn nwhitehorn at FreeBSD.org
Mon Aug 30 21:58:53 UTC 2010


Author: nwhitehorn
Date: Mon Aug 30 21:58:52 2010
New Revision: 212029
URL: http://svn.freebsd.org/changeset/base/212029

Log:
  Use MACHINE_ARCH instead of MACHINE as the directory to fetch packages
  from. Packages are architecture dependent, not machine dependent.

Modified:
  head/usr.sbin/pkg_install/add/main.c

Modified: head/usr.sbin/pkg_install/add/main.c
==============================================================================
--- head/usr.sbin/pkg_install/add/main.c	Mon Aug 30 21:33:33 2010	(r212028)
+++ head/usr.sbin/pkg_install/add/main.c	Mon Aug 30 21:58:52 2010	(r212029)
@@ -22,7 +22,7 @@
 __FBSDID("$FreeBSD$");
 
 #include <sys/param.h>
-#include <sys/utsname.h>
+#include <sys/sysctl.h>
 #include <err.h>
 #include <getopt.h>
 
@@ -301,7 +301,9 @@ getpackagesite(void)
 {
     int reldate, i;
     static char sitepath[MAXPATHLEN];
-    struct utsname u;
+    int archmib[] = { CTL_HW, HW_MACHINE_ARCH };
+    char arch[64];
+    size_t archlen = sizeof(arch);
 
     if (getenv("PACKAGESITE")) {
 	if (strlcpy(sitepath, getenv("PACKAGESITE"), sizeof(sitepath))
@@ -324,8 +326,10 @@ getpackagesite(void)
 	>= sizeof(sitepath))
 	return NULL;
 
-    uname(&u);
-    if (strlcat(sitepath, u.machine, sizeof(sitepath)) >= sizeof(sitepath))
+    if (sysctl(archmib, 2, arch, &archlen, NULL, 0) == -1)
+	return NULL;
+    arch[archlen-1] = 0;
+    if (strlcat(sitepath, arch, sizeof(sitepath)) >= sizeof(sitepath))
 	return NULL;
 
     reldate = getosreldate();


More information about the svn-src-all mailing list