Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitrij <kvarkas@gmail.com>2022-10-31 00:45:23 +0300
committerDimitrij <kvarkas@gmail.com>2022-10-31 00:45:23 +0300
commit302fb2e8ddea1c993552c9a30c02f41d01ca54a9 (patch)
treed6cf1b32664296ef2cecda33caeafbe39e6695c1 /MKUNXARC.SH
parent59105d9b26363e47f00676bd365b2ac8d4cb536a (diff)
parent4ff82ab29a22936b78510c68f544a99e677efed3 (diff)
Merge tag 'tags/0.78'HEADmaster
Diffstat (limited to 'MKUNXARC.SH')
-rw-r--r--MKUNXARC.SH11
1 files changed, 1 insertions, 10 deletions
diff --git a/MKUNXARC.SH b/MKUNXARC.SH
index 34aee8b2..cb79c054 100644
--- a/MKUNXARC.SH
+++ b/MKUNXARC.SH
@@ -3,16 +3,10 @@
# Build a Unix source distribution from the PuTTY CVS area.
#
# Expects the following arguments:
-# - the version number to write into configure.ac
# - the suffix to put on the Unix source tarball
# - the options to put on the 'make' command line for the docs
-autoconfver="$1"
-arcsuffix="$2"
-docver="$3"
-
-perl mkfiles.pl
-(cd doc && make -s ${docver:+"$docver"})
+arcsuffix="$1"
relver=`cat LATEST.VER`
arcname="putty$arcsuffix"
@@ -27,12 +21,9 @@ find . -name uxarc -prune -o \
-name CVS -prune -o \
-name .cvsignore -prune -o \
-name .svn -prune -o \
- -name configure.ac -prune -o \
-name '*.zip' -prune -o \
-name '*.tar.gz' -prune -o \
-type f -exec ln -s $PWD/{} uxarc/$arcname/{} \;
-sed "s/^AC_INIT(putty,.*/AC_INIT(putty, $autoconfver)/" configure.ac > uxarc/$arcname/configure.ac
-(cd uxarc/$arcname && sh mkauto.sh) 2>errors || { cat errors >&2; exit 1; }
tar -C uxarc -chzof $arcname.tar.gz $arcname
rm -rf uxarc