gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libmicrohttpd] 140/156: Added support for custom command for tarball co


From: gnunet
Subject: [libmicrohttpd] 140/156: Added support for custom command for tarball compression
Date: Sun, 28 May 2023 17:53:13 +0200

This is an automated email from the git hooks/post-receive script.

karlson2k pushed a commit to tag v0.9.77
in repository libmicrohttpd.

commit c7e130dcfaf7f01d66606f891c685ad16ee73c8a
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Wed May 24 19:56:57 2023 +0300

    Added support for custom command for tarball compression
---
 Makefile.am | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/Makefile.am b/Makefile.am
index c5a218a1..635e02c3 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -59,3 +59,23 @@ dist-hook:
        else \
          true; \
        fi
+
+dist-custm: distdir
+       @test -n "$(ARC_CMD)" || \
+         { echo 'The valid archive command must be defined by "ARC_CMD".' >&2; 
false; }
+       @test -n "$(ARC_EXT)" || \
+         { echo 'The archive file extention must be set by "ARC_EXT".' >&2; 
false; }
+       -rm -f '$(distdir).$(ARC_EXT)'
+       tardir=$(distdir) && $(am__tar) | $(ARC_CMD) >$(distdir).$(ARC_EXT)
+       $(am__post_remove_distdir)
+
+dist-custm2: distdir
+       @test -n "$(ARC_CMD)" || \
+         { echo 'The valid archive command must be defined by "ARC_CMD".' >&2; 
false; }
+       @test -n "$(ARC_EXT)" || \
+         { echo 'The archive file extention must be set by "ARC_EXT".' >&2; 
false; }
+       -rm -f '$(distdir).$(ARC_EXT)'
+       tardir=$(distdir) && $(am__tar) >$(distdir).tar && $(ARC_CMD) 
$(distdir).tar
+       rm -f $(distdir).tar
+       $(am__post_remove_distdir)
+

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]