]> git.pld-linux.org Git - packages/avscan.git/blame - avscan-verbose.patch
Release 7 (by relup.sh)
[packages/avscan.git] / avscan-verbose.patch
CommitLineData
de705fd4
JB
1--- avscan-5.1.1-openssl/Makefile.orig 2009-04-07 02:00:00.000000000 +0200
2+++ avscan-5.1.1-openssl/Makefile 2014-02-08 09:32:50.727904846 +0100
3@@ -40,7 +40,7 @@
4 #
5 all config:
6 @for subdir in $(ALL_SRC_DIRS); do \
7- $(MAKE) -s -C $$subdir -f Makefile $@; \
8+ $(MAKE) -C $$subdir -f Makefile $@; \
9 done
10 @echo "To install, type \"su\" (to gain root privileges)\
11 and then type \"make install\"."
12@@ -50,7 +50,7 @@
13 #
14 install:
15 @for subdir in $(ALL_SRC_DIRS); do \
16- $(MAKE) -s -C $$subdir -f Makefile $@; \
17+ $(MAKE) -C $$subdir -f Makefile $@; \
18 done
19 @echo "Installation complete."
20
21@@ -59,5 +59,5 @@
22 #
23 clean:
24 @for subdir in $(ALL_SRC_DIRS); do \
25- $(MAKE) -s -C $$subdir -f Makefile $@; \
26+ $(MAKE) -C $$subdir -f Makefile $@; \
27 done
28--- avscan-5.1.1-openssl/avscan/Makefile.orig 2009-04-07 02:00:00.000000000 +0200
29+++ avscan-5.1.1-openssl/avscan/Makefile 2014-02-08 09:33:46.621235835 +0100
30@@ -51,11 +51,9 @@
31 OBJ_C = $(SRC_C:.c=.o)
32 OBJ_CPP = $(SRC_CPP:.cpp=.o)
33 .c.o:
34- @echo "Compiling module $*.o"
35- @+$(CC) -c $*.c $(INC_DIRS) $(CFLAGS)
36+ $(CC) -c $*.c $(INC_DIRS) $(CFLAGS)
37 .cpp.o:
38- @echo "Compiling module $*.o"
39- @+$(CPP) -c $*.cpp $(INC_DIRS) $(CFLAGS) $(CPPFLAGS)
40+ $(CPP) -c $*.cpp $(INC_DIRS) $(CFLAGS) $(CPPFLAGS)
41
42
43 $(BIN): prebuild config modules postbuild
44@@ -66,7 +64,7 @@
45
46 modules: $(OBJ_C) $(OBJ_CPP)
47 @echo -n "Linking modules..."
48- @$(CPP) $(OBJ_C) $(OBJ_CPP) -o $(BIN) $(LIB_DIRS) $(LIBS)
49+ $(CPP) $(OBJ_C) $(OBJ_CPP) -o $(BIN) $(LIB_DIRS) $(LIBS)
50 @echo -n " "
51 @-$(LS) $(LSFLAGS) $(BIN)
52
This page took 0.068739 seconds and 4 git commands to generate.