head 1.5; access; symbols FSL_1_7_0:1.5 CFG_0_9_11:1.5 FSL_1_6_1:1.4 CFG_0_9_10:1.4 FSL_1_6_0:1.4 FSL_1_6b2:1.4 CFG_0_9_9:1.4 FSL_1_6b1:1.4 CFG_0_9_8:1.4 CFG_0_9_7:1.3 CFG_0_9_6:1.3 CFG_0_9_5:1.3 CFG_0_9_4:1.3 FSL_1_5_0:1.2 FSL_1_5a3:1.2 CFG_0_9_3:1.2 FSL_1_5a2:1.2 FSL_1_5a1:1.2 FSL_1_4_0:1.1 FSL_1_4b1:1.1 CFG_0_9_2:1.1 CFG_0_9_1:1.1 FSL_1_4a1:1.1 FSL_1_3_0:1.1 FSL_1_3b1:1.1 FSL_1_2_1:1.1 FSL_1_2_0:1.1 FSL_1_1_0:1.1 FSL_1_1b1:1.1 FSL_1_0_8:1.1 FSL_1_0_7:1.1 FSL_1_0_6:1.1 FSL_1_0_5:1.1 FSL_1_0_4:1.1 FSL_1_0_3:1.1 FSL_1_0_2:1.1 FSL_1_0_1:1.1 FSL_1_0_0:1.1 FSL_0_9_0:1.1 CFG_0_9_0:1.1 FSL_0_1_12:1.1 FSL_0_1_11:1.1 FSL_0_1_10:1.1 FSL_0_1_9:1.1 FSL_0_1_8:1.1 FSL_0_1_7:1.1 FSL_0_1_6:1.1 FSL_0_1_5:1.1 FSL_0_1_1:1.1; locks; strict; comment @# @; 1.5 date 2006.08.10.19.35.57; author rse; state Exp; branches; next 1.4; commitid Isy241gp4yykKkIr; 1.4 date 2004.12.31.19.16.25; author rse; state Exp; branches; next 1.3; 1.3 date 2004.07.17.07.37.55; author rse; state Exp; branches; next 1.2; 1.2 date 2004.03.19.15.43.32; author thl; state Exp; branches; next 1.1; 1.1 date 2002.07.09.08.29.19; author rse; state Exp; branches; next ; desc @@ 1.5 log @cleanup source tree for status as of 2006 @ text @#!/bin/sh ## ## devtool -- Development Tool ## Copyright (c) 2001-2006 Ralf S. Engelschall ## if [ $# -eq 0 ]; then echo "devtool:USAGE: devtool [ ...]" 1>&2 exit 1 fi cmd="$1" shift devtoolfunc="./devtool.func" if [ ! -f devtool.conf ]; then echo "devtool:ERROR: no devtool.conf in current directory" 1>&2 exit 1 fi cmdline=`grep "^%$cmd" devtool.conf` if [ ".$cmdline" = . ]; then echo "devtool:ERROR: command $cmd not found in devtool.conf" 1>&2 exit 1 fi if [ ".$TMPDIR" != . ]; then tmpdir="$TMPDIR" elif [ ".$TEMPDIR" != . ]; then tmpdir="$TEMPDIR" else tmpdir="/tmp" fi tmpfile="$tmpdir/rc.$$.tmp" rm -f $tmpfile touch $tmpfile echo ". $devtoolfunc" >>$tmpfile ( sed >$tmpfile sh $tmpfile "$@@" rm -f $tmpfile >/dev/null 2>&1 || true @ 1.4 log @Adjust copyright messages for new year 2005. @ text @d4 1 a4 1 ## Copyright (c) 2001-2005 Ralf S. Engelschall @ 1.3 log @Adjust copyright messages for new year 2004. @ text @d4 1 a4 1 ## Copyright (c) 2001-2004 Ralf S. Engelschall @ 1.2 log @Upgrade and unify build environment devtool an devtool.func; change devtool.conf to require current versions of shtool, libtool and autoconf @ text @d4 1 a4 1 ## Copyright (c) 2001-2003 Ralf S. Engelschall @ 1.1 log @add standard OSSP autoconf/libtool/shtool environment @ text @d4 1 a4 1 ## Copyright (c) 2001 Ralf S. Engelschall @