File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
set -eu
3
3
4
- # MK UPSTREAM TGZ
4
+ # MK SRC TGZ
5
5
# For Debian package or Spack: Make the upstream or source TGZ
6
6
# Used internally by Makefiles for Debian
7
7
# Used by dev/build-spacks.sh
@@ -10,16 +10,16 @@ set -eu
10
10
11
11
if [ ${# } != 5 ]
12
12
then
13
- echo " mk-upstream -tgz: usage: PKG_TYPE TGZ NAME VERSION FILE_LIST"
14
- echo " mk-upstream -tgz: given: $* "
13
+ echo " mk-src -tgz: usage: PKG_TYPE TGZ NAME VERSION FILE_LIST"
14
+ echo " mk-src -tgz: given: $* "
15
15
exit 1
16
16
fi
17
17
18
- PKG_TYPE=$1 # Package type: src or deb-dev or deb-bin or spack
19
- TGZ=$2 # Output TGZ file
20
- NAME=$3 # TGZ name
21
- VERSION=$4 # TGZ version
22
- FILE_LIST=$5 # Program that produces list of files to include
18
+ PKG_TYPE=$1 # Package type: src or deb-dev or deb-bin or spack
19
+ TGZ=$2 # Output TGZ file
20
+ NAME=$3 # TGZ name
21
+ VERSION=$4 # TGZ version
22
+ FILE_LIST=$5 # Program that produces list of files to include
23
23
24
24
echo " Building upstream TGZ for $NAME ..."
25
25
You can’t perform that action at this time.
0 commit comments