From: Eric Haszlakiewicz Date: Sat, 1 Jul 2023 18:02:00 +0000 (+0000) Subject: Issue #688: Only exclude generated doc/* files, keep the CMakeLists.txt, etc... so... X-Git-Tag: json-c-0.17-20230812~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4d529f92dcef0014622288bdb6941304174d3849;p=thirdparty%2Fjson-c.git Issue #688: Only exclude generated doc/* files, keep the CMakeLists.txt, etc... so the nodoc tarball can still be built. --- diff --git a/RELEASE_CHECKLIST.txt b/RELEASE_CHECKLIST.txt index 48486768..958c2bcd 100644 --- a/RELEASE_CHECKLIST.txt +++ b/RELEASE_CHECKLIST.txt @@ -94,7 +94,11 @@ Create the release tarballs: echo .git > excludes tar -czf json-c-${release}.tar.gz -X excludes json-c-${release} - echo 'doc/*' >> excludes + echo 'doc/*.cmake' >> excludes + echo 'doc/CMakeFiles' >> excludes + echo 'doc/Makefile' >> excludes + echo 'doc/Doxyfile' >> excludes + echo 'doc/html' >> excludes tar -czf json-c-${release}-nodoc.tar.gz -X excludes json-c-${release} ------------