diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2018-03-19 19:56:15 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2018-03-19 19:56:15 +0100 |
commit | 1542c122b3672fe83e027411ad2445772e2d0ed3 (patch) | |
tree | e535bc621bd7ffa9d5ce89e0d495df5d1c4ab6fd /app/tools/oldscripts/fetchall | |
parent | 773810e6583142d7d15263e6481c42aebed6d7f1 (diff) | |
parent | d1a8285f818eb7e5c3d6a05709ea21a808490b8c (diff) |
Update upstream source from tag 'upstream/5.1.0'
Update to upstream version '5.1.0'
with Debian dir 93ca74b8b4602fce4c9c7740e0cfdde25f086673
Diffstat (limited to 'app/tools/oldscripts/fetchall')
-rw-r--r-- | app/tools/oldscripts/fetchall | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/app/tools/oldscripts/fetchall b/app/tools/oldscripts/fetchall deleted file mode 100644 index 5a88f73..0000000 --- a/app/tools/oldscripts/fetchall +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/sh - -fetchdir() { - echo fetching $1 - mkdir $1 - ( cd $1; ln -s ../$2/src/$1/RCS . ; co -r$RLSE Makefile ; co -r$RLSE `make rcssrc` ) -} - -if [ $# -lt 1 ] ; then - echo fetchall RLSE - exit 1 -fi -RLSE=$1 -if [ -d ~/xtrkcad/$RLSE ] ; then - echo ~/xtrkcad/$RLSE exists - exit 1 -fi -if [ -d ~/wlib/$RLSE ] ; then - echo ~/wlib/$RLSE exists - exit 1 -fi - -mkdir ~/xtrkcad/$RLSE -cd ~/xtrkcad/$RLSE -fetchdir bin .. -fetchdir help .. -fetchdir lib .. -fetchdir lib/demos ../.. -fetchdir lib/examples ../.. -fetchdir lib/params ../.. -fetchdir tools .. -mkdir ~/wlib/$RLSE -cd ~/wlib/$RLSE -fetchdir include .. -fetchdir mswlib .. -fetchdir test .. -fetchdir gtklib .. - -mkdir ~/xtrkcad/$RLSE/help/images.orig -cp ~/xtrkcad/dev/help/images.orig/*.png ~/xtrkcad/$RLSE/help/images.orig -cp ~/xtrkcad/dev/bin/xtrkcad.ico ~/xtrkcad/$RLSE/bin/ -cp ~/xtrkcad/dev/lib/register.* ~/xtrkcad/$RLSE/lib/ -chmod 444 ~/xtrkcad/$RLSE/lib/register.* -cp ~/wlib/dev/test/wtest.ico ~/wlib/$RLSE/test/ -ln -s ~/wlib/$RLSE ~/xtrkcad/$RLSE/bin/wlib - |