From 62bed4a22440bcbb889a0783cc39987f68fe8d88 Mon Sep 17 00:00:00 2001 From: jules Date: Fri, 21 Jun 2013 17:24:37 +0100 Subject: [PATCH] Introjucer: fix for static lib builds on linux. --- .../Introjucer/Source/Project Saving/jucer_ProjectExport_Make.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_Make.h b/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_Make.h index b83f61112f..e198522c08 100644 --- a/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_Make.h +++ b/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_Make.h @@ -239,7 +239,7 @@ private: out << " TARGET := " << escapeSpaces (targetName) << newLine; if (projectType.isStaticLibrary()) - out << " BLDCMD = ar -rcs $(OUTDIR)/$(TARGET) $(OBJECTS) $(TARGET_ARCH)" << newLine; + out << " BLDCMD = ar -rcs $(OUTDIR)/$(TARGET) $(OBJECTS)" << newLine; else out << " BLDCMD = $(CXX) -o $(OUTDIR)/$(TARGET) $(OBJECTS) $(LDFLAGS) $(RESOURCES) $(TARGET_ARCH)" << newLine;