Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Commit

Permalink
gcc-4.8: post-link: Fixed removal of test files.
Browse files Browse the repository at this point in the history
  • Loading branch information
stuarteberg committed May 6, 2015
1 parent 0de5540 commit de94399
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gcc-4.8/post-link.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ set +e
SUCCESS=$?
if [ $SUCCESS -ne 0 ]; then
echo "Installation failed: gcc is not able to compile a simple 'Hello, World' program."
rm -r $workdir
cd .. && rm -r $workdir
exit 1;
fi

Expand All @@ -92,8 +92,8 @@ fi
SUCCESS=$?
if [ $SUCCESS -ne 0 ]; then
echo "Installation failed: Compiled test program did not execute cleanly."
rm -r $workdir
cd .. && rm -r $workdir
exit 1;
fi

rm -r $workdir
cd .. && rm -r $workdir

0 comments on commit de94399

Please sign in to comment.