Skip to content

Commit

Permalink
minor fixup to ar command for static library build
Browse files Browse the repository at this point in the history
  • Loading branch information
Chad Trabant committed Aug 22, 2014
1 parent 1e36a43 commit 782f161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dynamic: $(LIB_DYN)
# Build static library
$(LIB_A): $(LIB_OBJS)
rm -f $(LIB_A)
ar -csq $(LIB_A) $(LIB_OBJS)
ar -crs $(LIB_A) $(LIB_OBJS)

# Build shared library using GCC-style options
$(LIB_SO): $(LIB_DOBJS)
Expand Down

0 comments on commit 782f161

Please sign in to comment.