From 861eef14c3e679669ea60b0549cc9d77809262f6 Mon Sep 17 00:00:00 2001 From: Sean Khan Date: Sun, 13 Jul 2025 22:22:11 -0400 Subject: [PATCH] nss-userspace: Fix parallel build issue Ensure libraries are built before dependent binaries. Signed-off-by: Sean Khan --- nss-userspace-oss/patches/000-create-makefile.patch | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nss-userspace-oss/patches/000-create-makefile.patch b/nss-userspace-oss/patches/000-create-makefile.patch index ab37f9f..8e77c38 100644 --- a/nss-userspace-oss/patches/000-create-makefile.patch +++ b/nss-userspace-oss/patches/000-create-makefile.patch @@ -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 \