Skip to content
Snippets Groups Projects
Commit 275fd8e4 authored by Joris van Zwieten's avatar Joris van Zwieten
Browse files

BugID: 971

- fixed (push should be pushd)
parent af5540f7
No related branches found
No related tags found
No related merge requests found
...@@ -675,7 +675,7 @@ if [ $boot = 1 ]; then ...@@ -675,7 +675,7 @@ if [ $boot = 1 ]; then
echo "" >> build.log echo "" >> build.log
echo " bootstrapping package $pkg ..." echo " bootstrapping package $pkg ..."
cd $curwd/$pkg >> $curwd/build.log 2>&1 pushd $curwd/$pkg >> $curwd/build.log 2>&1
rm -rf autom4te.cache >> $curwd/build.log 2>&1 rm -rf autom4te.cache >> $curwd/build.log 2>&1
# Try to set execution permissions, ignore failure. # Try to set execution permissions, ignore failure.
...@@ -688,6 +688,8 @@ if [ $boot = 1 ]; then ...@@ -688,6 +688,8 @@ if [ $boot = 1 ]; then
exit 1 exit 1
fi fi
popd >> $curwd/build.log 2>&1
echo $pkg '# bootstrapped at' `date` >> $curwd/build.result; >> $curwd/build.log 2>&1 echo $pkg '# bootstrapped at' `date` >> $curwd/build.result; >> $curwd/build.log 2>&1
done done
echo "" >> build.log echo "" >> build.log
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment