From c0dc555bf7b96f30d063c5212a9ad9e1184c068e Mon Sep 17 00:00:00 2001
From: Alessandro Rubini <rubini@gnudd.com>
Date: Tue, 13 Nov 2012 09:55:30 +0100
Subject: [PATCH] sdbfs: Makefile: build user space first

According to the kernel headers you have, compiling the kernel part
may fail. So compile userspace first, in case you need gensdbfs alone.
Thanks to Matthieu Cattin for noting this.

Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
---
 sdbfs/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdbfs/Makefile b/sdbfs/Makefile
index b5a990f..8ad2536 100644
--- a/sdbfs/Makefile
+++ b/sdbfs/Makefile
@@ -1,5 +1,5 @@
 
-DIRS = kernel lib userspace doc
+DIRS = lib userspace kernel doc
 
 all clean modules install modules_install:
 	for d in $(DIRS); do $(MAKE) -C $$d $@ || exit 1; done
-- 
GitLab