source: freewrt/package/iptables/patches/010-portability.patch@ 8b53bd7

freewrt_1_0 freewrt_2_0
Last change on this file since 8b53bd7 was 01a47f2, checked in by Thorsten Glaser <tg@…>, 19 years ago

cp -v isn't portable

git-svn-id: svn://www.freewrt.org/trunk/freewrt@136 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 953 bytes
RevLine 
[01a47f2]1$FreeWRT$
2
3--- iptables-1.3.5/Makefile.orig Wed Feb 1 12:14:15 2006
4+++ iptables-1.3.5/Makefile Sun Jun 18 23:12:59 2006
5@@ -197,17 +197,17 @@ ip6tables.8: ip6tables.8.in extensions/l
6 .PHONY: install-devel-man3
7 install-devel-man3: $(DEVEL_MAN3)
8 @[ -d $(DESTDIR)$(MANDIR)/man3 ] || mkdir -p $(DESTDIR)$(MANDIR)/man3
9- @cp -v $(DEVEL_MAN3) $(DESTDIR)$(MANDIR)/man3
10+ @cp $(DEVEL_MAN3) $(DESTDIR)$(MANDIR)/man3
11
12 .PHONY: install-devel-headers
13 install-devel-headers: $(DEVEL_HEADERS)
14 @[ -d $(DESTDIR)$(INCDIR) ] || mkdir -p $(DESTDIR)$(INCDIR)
15- @cp -v $(DEVEL_HEADERS) $(DESTDIR)$(INCDIR)
16+ @cp $(DEVEL_HEADERS) $(DESTDIR)$(INCDIR)
17
18 .PHONY: install-devel-libs
19 install-devel-libs: $(DEVEL_LIBS)
20 @[ -d $(DESTDIR)$(LIBDIR) ] || mkdir -p $(DESTDIR)$(LIBDIR)
21- @cp -v $(DEVEL_LIBS) $(DESTDIR)$(LIBDIR)
22+ @cp $(DEVEL_LIBS) $(DESTDIR)$(LIBDIR)
23
24 .PHONY: install-devel
25 install-devel: all install-devel-man3 install-devel-headers install-devel-libs
Note: See TracBrowser for help on using the repository browser.