diff options
Diffstat (limited to 'projects/Makefile')
-rw-r--r-- | projects/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/projects/Makefile b/projects/Makefile index ab4c7e283d..e64379b7bf 100644 --- a/projects/Makefile +++ b/projects/Makefile @@ -12,4 +12,9 @@ include $(LEVEL)/Makefile.config DIRS:= $(filter-out llvm-test,$(patsubst $(SourceDir)/%/Makefile,%,$(wildcard $(SourceDir)/*/Makefile))) +# Sparc cannot link shared libraries (libtool problem?) which Stacker uses +ifeq ($(ARCH), Sparc) +DIRS := $(filter-out Stacker, $(DIRS)) +endif + include $(BUILD_SRC_ROOT)/Makefile.rules |