support llvm-ar - ubase - suckless linux base utils | |
git clone git://git.suckless.org/ubase | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 6253da55c13be52a7f6cf2f038a051b397ca208f | |
parent 8fe02392edbb05213e114ded8e371fd7dcbe94a7 | |
Author: Eon S. Jeon <[email protected]> | |
Date: Tue, 3 Feb 2015 20:31:47 +0900 | |
support llvm-ar | |
llvm-ar doesn't understand flags prefixed with dashes. | |
Diffstat: | |
M Makefile | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -158,7 +158,7 @@ config.h: | |
$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ -c $< | |
$(LIBUTIL): $(LIBUTILOBJ) | |
- $(AR) -r -c $@ $? | |
+ $(AR) rc $@ $? | |
$(RANLIB) $@ | |
install: all |