upgpkg: wordpress 6.2.1-1
[ArchLinux/community.git] / signing-party / repos / community-x86_64 / gpgwrap_makefile.patch
blobd5cdafd174aaf3b0016347882059fe0cc828f05f
1 From: Franck Joncourt <franck.mail@dthconnex.com>
2 Subject: [PATCH] fixes/gpgwrap_makefile
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.
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.
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.
14 Signed-off-by: Franck Joncourt <franck.mail@dthconnex.com>
16 ---
17 gpgwrap/Makefile | 4 +++-
18 1 files changed, 3 insertions(+), 1 deletions(-)
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
27 -.PHONY: all clean
28 +.PHONY: all clean install
30 all:
31 - cd src && ${MAKE} all DIET="${DIET}"
32 + cd src && ${MAKE} gpgwrap DIET="${DIET}"
34 +install:
36 clean:
37 cd src && ${MAKE} clean
38 --