[Balloon] Simple typo in package/kernel/Makefile

Top Page
Attachments:
Message as email
+ (text/plain)
Delete this message
Reply to this message
Author: Patrick Doyle
Date:  
To: balloon
Subject: [Balloon] Simple typo in package/kernel/Makefile
I stumbled across this whilst browsing through the Makefile. It looks
to me like line 242 is missing a "cp" command.

I'm still trying to work out the best way to submit patches like this.
Here's my attempt from tracking the SVN tree via my git mirror:

>From 5aa18877ec3a40ae6d0d7e32723b5d7e90fc2d12 Mon Sep 17 00:00:00 2001

From: Patrick Doyle <>
Date: Fri, 10 Jun 2011 08:44:33 -0400
Subject: [PATCH] Typo fix -- missing "cp" command

---
 package/kernel/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/package/kernel/Makefile b/package/kernel/Makefile
index 31d94ad..1c9b024 100644
--- a/package/kernel/Makefile
+++ b/package/kernel/Makefile
@@ -239,7 +239,7 @@ endif
 #quilt push -a returns 2 if it has done it all already - this is not an error
 PATCHLIST = $(shell awk '{ print "$(CONF)/"$1 }' $(CONF)/series-$(BOARD))
 $(RES)/quilt.stamp: $(RES)/yaffs-source-$(YAFFSCHECKOUT).stamp
$(RES)/series.stamp $(PATCHLIST) $(RES)/patchlink.stamp
-    cp $(CONF)/$(BOARD)config$(VARIANT)$(SUBVARIANT)
$(BUILD)/$(DEFCONFIGFILE) || $(CONF)/$(BOARD)config$(VARIANT)
$(BUILD)/$(DEFCONFIGFILE) || cp $(CONF)/$(BOARD)config
$(BUILD)/$(DEFCONFIGFILE)
+    cp $(CONF)/$(BOARD)config$(VARIANT)$(SUBVARIANT)
$(BUILD)/$(DEFCONFIGFILE) || cp $(CONF)/$(BOARD)config$(VARIANT)
$(BUILD)/$(DEFCONFIGFILE) || cp $(CONF)/$(BOARD)config
$(BUILD)/$(DEFCONFIGFILE)
     (cd $(BUILD) && sed -i -e "s/^.*CONFIG_AEABI.*$$/$(EABICONFIG)/"
$(DEFCONFIGFILE) )
     (cd $(BUILD) && sed -i -e
"s/^.*CONFIG_OABI_COMPAT.*$$/$(OABICONFIG)/" $(DEFCONFIGFILE) )
     (cd $(BUILD) && quilt push -a || test $$? = 2 )
-- 
1.7.2.5