mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 06:59:51 +00:00
The crude loop I wrote to come up with this changeset: find -L package/feeds/packages/ -name patches | \ sed 's/patches$/refresh/' | sort | xargs make Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
12 lines
248 B
Diff
12 lines
248 B
Diff
--- a/daemon/Makefile
|
|
+++ b/daemon/Makefile
|
|
@@ -6,7 +6,7 @@ THISDIR = $(shell pwd)
|
|
all: netatopd
|
|
|
|
netatopd: netatopd.o Makefile
|
|
- $(CC) netatopd.o -o netatopd -lz
|
|
+ $(CC) $(LDFLAGS) netatopd.o -o netatopd -lz
|
|
|
|
clean:
|
|
rm -f *.o netatopd
|