Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change run build_tools.bash to run ./tools.bash #55

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions avr-libc.build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Expand All @@ -19,7 +19,7 @@ source build.conf

if [[ ! -d toolsdir ]] ;
then
echo "You must first build the tools: run build_tools.bash"
echo "You must first build the tools: run ./tools.bash"
exit 1
fi

Expand Down Expand Up @@ -93,4 +93,3 @@ fi
PATH=$PREFIX/bin:$PATH nice -n 10 make -j $MAKE_JOBS

PATH=$PREFIX/bin:$PATH make install

2 changes: 1 addition & 1 deletion binutils.build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ source build.conf

if [[ ! -d toolsdir ]] ;
then
echo "You must first build the tools: run build_tools.bash"
echo "You must first build the tools: run ./tools.bash"
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion gcc.build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ source build.conf

if [[ ! -d toolsdir ]] ;
then
echo "You must first build the tools: run build_tools.bash"
echo "You must first build the tools: run ./tools.bash"
exit 1
fi

Expand Down