diff options
author | Rob Landley | 2005-08-13 01:10:27 +0000 |
---|---|---|
committer | Rob Landley | 2005-08-13 01:10:27 +0000 |
commit | be3dae145f71b583f2c975d8dcdc10d9dad2268a (patch) | |
tree | 4bcd50be61a1945e41eabd59d645d398fc038522 /busybox/networking/Makefile.in | |
parent | 6022fc8723c4bfaf055011db33f69565fa0c82b1 (diff) | |
download | busybox-be3dae145f71b583f2c975d8dcdc10d9dad2268a.zip busybox-be3dae145f71b583f2c975d8dcdc10d9dad2268a.tar.gz |
Makefile related backports:
10945, 10946 Make compile much, much faster.
10923 big makefile change. Nervous.
10946, 10991, 10998, 11003 small makefile fixes.
Diffstat (limited to 'busybox/networking/Makefile.in')
-rw-r--r-- | busybox/networking/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/busybox/networking/Makefile.in b/busybox/networking/Makefile.in index 9bfe901..f0157ad 100644 --- a/busybox/networking/Makefile.in +++ b/busybox/networking/Makefile.in @@ -61,7 +61,7 @@ ifeq ($(needcrypt-y),y) endif $(NETWORKING_DIR)$(NETWORKING_AR): $(patsubst %,$(NETWORKING_DIR)%, $(NETWORKING-y)) - $(AR) -ro $@ $(patsubst %,$(NETWORKING_DIR)%, $(NETWORKING-y)) + $(AR) $(ARFLAGS) $@ $(patsubst %,$(NETWORKING_DIR)%, $(NETWORKING-y)) $(NETWORKING_DIR)%.o: $(srcdir)/%.c $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $< |