Skip to content

Commit

Permalink
[build] Remove ar u option
Browse files Browse the repository at this point in the history
It used to be necessary, but now only yields warning during build time:
  ar: `u' modifier ignored since `D' is the default (see `U')

Stop using it.
  • Loading branch information
spiiroin committed Mar 14, 2015
1 parent 9a46cf1 commit a247909
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -204,7 +204,7 @@ install-%-rfs-scripts:
$(CC) -o $@ $^ $(LDFLAGS) $(LDLIBS)

%.a:
$(AR) ru $@ $^
$(AR) r $@ $^

%.pic.o : CFLAGS += -fPIC
%.pic.o : CFLAGS += -fvisibility=hidden
Expand Down

0 comments on commit a247909

Please sign in to comment.