Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: andersen at uclibc.org <andersen@uclibc.org>
To: buildroot@busybox.net
Subject: [Buildroot] svn commit: trunk/buildroot/package/portage
Date: Thu, 10 Aug 2006 13:58:15 -0700 (PDT)	[thread overview]
Message-ID: <20060810205815.29700485C5@busybox.net> (raw)

Author: andersen
Date: 2006-08-10 13:58:14 -0700 (Thu, 10 Aug 2006)
New Revision: 15798

Log:
comparing $(ARCH) vs i.e. i386 isn't going to work when ARCH=i486 etc.
Need to instead compare vs BR2_i386 and friends.


Modified:
   trunk/buildroot/package/portage/portage.mk


Changeset:
Modified: trunk/buildroot/package/portage/portage.mk
===================================================================
--- trunk/buildroot/package/portage/portage.mk	2006-08-10 20:21:33 UTC (rev 15797)
+++ trunk/buildroot/package/portage/portage.mk	2006-08-10 20:58:14 UTC (rev 15798)
@@ -18,22 +18,22 @@
 SANDBOX_DIR:=$(BUILD_DIR)/sandbox-$(SANDBOX_VERSION)
 SANDBOX_TARGET_BINARY:=usr/bin/sandbox
 
-ifeq ($(ARCH),cris)
+ifeq ($(BR2_cris),y)
 	PORTAGE_ARCH:=x86
 endif
-ifeq ($(ARCH), mipsel)
+ifeq ($(BR2_mipsel),y)
 	PORTAGE_ARCH:=mips
 endif
-ifeq ($(ARCH), powerpc)
+ifeq ($(BR2_powerpc),y)
 	PORTAGE_ARCH:=ppc
 endif
-ifeq ($(ARCH),sh4)
+ifeq ($(BR2_sh4),y)
 	PORTAGE_ARCH:=sh
 endif
-ifeq ($(ARCH),sh64)
+ifeq ($(BR2_sh64),y)
 	PORTAGE_ARCH:=sh
 endif
-ifeq ($(ARCH), i386)
+ifeq ($(BR2_i386),y)
 	PORTAGE_ARCH:=x86
 endif
 ifeq ($(PORTAGE_ARCH),)

             reply	other threads:[~2006-08-10 20:58 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-08-10 20:58 andersen at uclibc.org [this message]
  -- strict thread matches above, loose matches on Subject: below --
2007-07-25 11:40 [Buildroot] svn commit: trunk/buildroot/package/portage ulf at uclibc.org
2007-07-25 17:41 ulf at uclibc.org
2007-11-16 12:48 vanokuten at uclibc.org
2007-11-27 21:15 ulf at uclibc.org
2008-05-11  6:45 ulf at uclibc.org
2009-01-08 22:11 ulf at uclibc.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20060810205815.29700485C5@busybox.net \
    --to=andersen@uclibc.org \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox