diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2011-01-25 19:27:23 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2011-01-25 19:27:23 +0000 |
commit | 33ee3ee6b4b0432bb9958b9d959f4783856b37ff (patch) | |
tree | 885e1fc03903df3f61a7dd7a5b02ff982114aa8e /payloads | |
parent | 9dcca3bc3eb5c4923dffaf4ac2e89514005a79c5 (diff) |
Fix abuild
thanks to Kevin who came up with this
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Acked-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6298 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'payloads')
-rw-r--r-- | payloads/external/SeaBIOS/Makefile.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/payloads/external/SeaBIOS/Makefile.inc b/payloads/external/SeaBIOS/Makefile.inc index faca57e565..8b44c6fb98 100644 --- a/payloads/external/SeaBIOS/Makefile.inc +++ b/payloads/external/SeaBIOS/Makefile.inc @@ -1,6 +1,6 @@ -TAG-$(CONFIG_SEABIOS_MASTER)=master +TAG-$(CONFIG_SEABIOS_MASTER)=origin/master TAG-$(CONFIG_SEABIOS_STABLE)=rel-0.6.1.3 all: seabios @@ -18,9 +18,9 @@ patch: checkout checkout: echo "Checking out SeaBIOS $(TAG-y)" - test -d seabios && ( cd seabios; git pull ) || \ + test -d seabios && ( cd seabios; git fetch ) || \ git clone git://git.linuxtogo.org/home/kevin/seabios.git seabios - cd seabios; git checkout $(TAG-y) + cd seabios; git checkout -m $(TAG-y) clean: test -d seabios && (cd seabios; $(MAKE) CC="$(CC)" LD="$(LD)" clean) || exit 0 |