mirror of
https://github.com/qosmio/nss-packages.git
synced 2025-12-16 16:21:53 +00:00
nss-userspace: Fix parallel build issue
Ensure libraries are built before dependent binaries. Signed-off-by: Sean Khan <datapronix@protonmail.com>
This commit is contained in:
parent
3ce5249c26
commit
861eef14c3
@ -1,6 +1,6 @@
|
||||
--- /dev/null
|
||||
+++ b/Makefile
|
||||
@@ -0,0 +1,24 @@
|
||||
@@ -0,0 +1,28 @@
|
||||
+# Define the build directories based on flags
|
||||
+DIRS-y :=
|
||||
+DIRS-$(BUILD_LIBNSS) += lib
|
||||
@ -17,6 +17,10 @@
|
||||
+$(DIRS-y):
|
||||
+ $(MAKE) -C $@
|
||||
+
|
||||
+nssinfo: lib
|
||||
+
|
||||
+ppe/ppecfg: ppe/ppenl_lib
|
||||
+
|
||||
+clean:
|
||||
+ @for dir in $(DIRS-y); do \
|
||||
+ if [ -d $$dir ]; then \
|
||||
|
||||
Loading…
Reference in New Issue
Block a user