generate_source_tarball.sh: Create directory in TMPDIR when using WITH_TEMP

Related: RHEL-30946
This commit is contained in:
Andrew Hughes 2024-03-21 01:21:09 +00:00
parent 21d6c4e2e2
commit 6ad22762db
2 changed files with 3 additions and 2 deletions

View File

@ -118,7 +118,7 @@ if [ "$OPENJDK_LATEST" != "" ] ; then
fi
if [ "$WITH_TEMP" != "" ] ; then
pushd "$(mktemp --directory temp-generated-source-tarball-XXX)"
pushd "$(mktemp --directory --tmpdir temp-generated-source-tarball-XXX)"
fi
if [ "$VERSION" = "" ] ; then
@ -266,7 +266,7 @@ pushd "${FILE_NAME_ROOT}"
mv "${TARBALL_NAME}" ..
popd
if [ "$WITH_TEMP" != "" ] ; then
echo "Tarball is: $(realpath --relative-to=.. .)/${TARBALL_NAME}"
echo "Tarball is: $(realpath .)/${TARBALL_NAME}"
popd
else
echo -n "Done. You may want to remove the uncompressed version"

View File

@ -2537,6 +2537,7 @@ cjc.mainProgram(args)
- Install alt-java man page from the misc tarball as it is no longer in the JDK image
- generate_source_tarball.sh: Update examples in header for clarity
- generate_source_tarball.sh: Cleanup message issued when checkout already exists
- generate_source_tarball.sh: Create directory in TMPDIR when using WITH_TEMP
- Related: RHEL-30946
* Sun Apr 14 2024 Andrew Hughes <gnu.andrew@redhat.com> - 1:21.0.3.0.1-0.1.ea