* Removed entries in TODO that I've taken care of.

* Added tilde-expansion to the setenv() function.  The tilde is only
  expanded if it is add the beginning of the value or right after a colon.

svn path=/trunk/kdenonbeta/kdecvs-build/; revision=303203
wilder
Michael Pyne 22 years ago
parent 97d8dfc961
commit b50be7c906
  1. 3
      TODO
  2. 1
      kdecvs-build

@ -1,8 +1,5 @@
* Add CVSROOT changing support.
* Add .cvspass creation/appending support.
* Allow checkout of any level subdirectory.
* Add $KDEDIR/bin:$QTDIR/bin to $PATH automatically.
* Add $KDEDIR/lib to $LD_LIBRARY_PATH automatically.
* Ensure LD_LIBRARY_PATH is correct for one/multi dir cases.
* Refactor code if necessary.
* Expand ~ in environment setting code.

@ -156,6 +156,7 @@ sub setenv
return if (length $val == 0);
1 while ($val =~ s/(^|:)~/$1$ENV{'HOME'}/);
if (not $pretend)
{
$ENV{$var} = $val;

Loading…
Cancel
Save