summaryrefslogtreecommitdiffstats
path: root/redhat/gentarball.sh
diff options
context:
space:
mode:
authoralbator <albator@arcadia.vtf>2011-10-30 18:36:20 +0100
committeralbator <albator@arcadia.vtf>2011-10-30 18:36:20 +0100
commit0061571b57d37f17c074ba869a674fb774fb49b4 (patch)
tree4e907ead034121a05cdebdfff12160eb8bc6d165 /redhat/gentarball.sh
parentf16f2e4b84cfb3bd3045ccbcab47277b01550530 (diff)
downloadtde-packaging-0061571b57d37f17c074ba869a674fb774fb49b4.tar.gz
tde-packaging-0061571b57d37f17c074ba869a674fb774fb49b4.zip
TDE 3.5.13 stable release for RHEL/Fedora
Diffstat (limited to 'redhat/gentarball.sh')
-rwxr-xr-xredhat/gentarball.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/redhat/gentarball.sh b/redhat/gentarball.sh
index 9715cffd0..76d902fd5 100755
--- a/redhat/gentarball.sh
+++ b/redhat/gentarball.sh
@@ -15,7 +15,7 @@ EOF
##### CHOOSE A TDE COMPONENT #####
PS3="Enter number: "
-select COMP in $( cut -f1 components.txt ) ; do
+select COMP in $( cut -f1 components.txt | grep -v "^#" ) ; do
ARCHIVEDIR="${PWD}/${COMP}"
[ -d "${ARCHIVEDIR}" ] || mkdir -p "${ARCHIVEDIR}"
@@ -67,6 +67,7 @@ select COMP in $( cut -f1 components.txt ) ; do
;;
"qt3")
echo "Extracting '${COMP}' from GIT ..."
+ ARCHIVENAME="qt3-3.3.8d.tar.gz"
git clone http://scm.trinitydesktop.org/scm/git/tde; mv tde/main/dependencies/qt3 .
;;
*)