Skip to content

Commit

Permalink
Get rid or warnings in the relinker
Browse files Browse the repository at this point in the history
  • Loading branch information
creationix committed Jul 19, 2010
1 parent bb3f68d commit d25b2cc
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions utils/relink.sh
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@


BASE=`pwd` BASE=`pwd`


echo "Removing old links"
rm lib/node/* bin/*

echo "Installing libraries into local environment" echo "Installing libraries into local environment"
cd lib/node cd $BASE/lib/node
ln -s ../../modules/*/lib/* ./ rm *
ln -sf ../../modules/*/lib/* ./


echo "Installing executables into local environment" echo "Installing executables into local environment"
cd $BASE/bin cd $BASE/bin
ln -s ../modules/*/bin/* ./ rm *
ln -sf ../modules/*/bin/* ./


platform=unknown platform=unknown
unamestr=$(uname) unamestr=$(uname)
Expand Down

0 comments on commit d25b2cc

Please sign in to comment.