Installed gpgwrap from d.rules for consistency purpose.
[pgp-tools.git] / debian / patches / gpgwrap_makefile.diff
1 From: Franck Joncourt <franck.mail@dthconnex.com>
2 Subject: [PATCH] fixes/gpgwrap_makefile
3
4 This allows the main Makefile not to fail when trying to install gpgwrap.
5 It just adds the install target in the gpgwrap Makefile.
6
7 That could be avoided by handling differently the gpgwrap project in the main
8 Makefile, but then it is going to be the mess.
9
10 The new target does not install anything since so far the man page is currently
11 installed from debian/rules, and thus everything to install gpgwrap is added to
12 debian.rules for consistency purpose.
13
14 Signed-off-by: Franck Joncourt <franck.mail@dthconnex.com>
15
16 ---
17 gpgwrap/Makefile | 4 +++-
18 1 files changed, 3 insertions(+), 1 deletions(-)
19
20 diff --git a/gpgwrap/Makefile b/gpgwrap/Makefile
21 index 30064df..3dc65b9 100644
22 --- a/gpgwrap/Makefile
23 +++ b/gpgwrap/Makefile
24 @@ -1,9 +1,11 @@
25 MAKE=make
26
27 -.PHONY: all clean
28 +.PHONY: all clean install
29
30 all:
31 cd src && ${MAKE} all DIET="${DIET}"
32
33 +install:
34 +
35 clean:
36 cd src && ${MAKE} clean
37 --
38 tg: (9286c56..) fixes/gpgwrap_makefile (depends on: master)