Capture makefile errors in shell script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Capture makefile errors in shell script
# 1  
Old 01-28-2011
Capture makefile errors in shell script

Hi,
I have a bash script which calls a few "make". I would like to know whether the makefile failed with any errors. How do I do that in the script?

Thanks,
S
# 2  
Old 01-28-2011
Code:
make > log 2>&1
if [ "$?" -ne 0 ]; then
   echo "Build failed"
   cat log
fi

# 3  
Old 01-28-2011
Quote:
Originally Posted by citaylor
Code:
make > log 2>&1
if [ "$?" -ne 0 ]; then
   echo "Build failed"
   cat log
fi

The above explained if you're new, "Run make and redirect both the errors and the standard output to 'log'. If the exit status of make '$?' is not equal to 0 ( -ne 0 where exit status 0 means it ran successfully) then say "Build failed" and show log file. Not that you needed it but someone else reading it may. :-)

Last edited by DC Slick; 01-28-2011 at 04:07 PM.. Reason: clarification
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell script to capture Current day ORA errors from Alert Log

Please provide Shell script to capture ORA errors from Alert Log for a given date or Current date. -Veera (1 Reply)
Discussion started by: Veera_V
1 Replies

2. Shell Programming and Scripting

using a Shell Script in a Makefile

Hello, I have a Makefile that converts wrl (vrml) files to html files... how can I use a shell script in that makefile which works on all html files after converting? The Shell Script have to find and replace a String in every createt html file. sorry I'm a Newbie, so I hope someone can... (0 Replies)
Discussion started by: Dan_78
0 Replies

3. Shell Programming and Scripting

Shell script to capture ORA errors from Alert Log

Hi, as the title says, I am after a simple script, which will open the Alert log from an 11.2.0.1 Linux environment and mail the error message and description to a recipient email address. I can then schedule this job via cron and let it run every 15 minutes. I have searched online... (16 Replies)
Discussion started by: jnrpeardba
16 Replies

4. Shell Programming and Scripting

Script to capture date/time in seconds in PERL... Cant understand errors

I'm Using this script to find the time of a file. I'm very much new to PERL and found this script posted by some one on this forum. It runs perfectly fine, just that it gives me following errors with the accurate output as well. I jus want the output to be stored in another file so that i can... (0 Replies)
Discussion started by: bankimmehta
0 Replies

5. Shell Programming and Scripting

Script to capture errors

Hello; I'm trying to write a script to capture any hardware error from logs/syslog on my SUSE 10 servers so i can be notified if we have any hardware issues such a bad fan or battery, etc.. Thanks in advance for any help (2 Replies)
Discussion started by: Katkota
2 Replies

6. Shell Programming and Scripting

Shell script makefile

Is there a way to write a makefile for all the source files in a directory with a shell script? (2 Replies)
Discussion started by: zzhan
2 Replies

7. UNIX for Dummies Questions & Answers

Forcing Makefile to Ignore Errors

Is there A way I can Force a makefile to ignore errors? i believe it is using gcc. i have a set of commands in the makefile that i want to run and each time the makefile gets to the point of this commands, it aborts because of the commands. how can i get the makefile to keep running... (3 Replies)
Discussion started by: SkySmart
3 Replies

8. Shell Programming and Scripting

shell script in makefile

Hi, Can we execute a shell script by makefile. I mean we will write a shell script in a make file and it will be executed when we compile the C++ program using make file. (2 Replies)
Discussion started by: surjyap
2 Replies

9. Programming

makefile errors

We are trying to compile an interface from our ERP to vertex tax package. We need to do this in C. We are on solaris 9 going to oracle 9i on aix. When we run our makefile we are getting this error Fatal error -- Assertion failed: file "../src/ild-args.c" line 1613 Exiting Any help... (3 Replies)
Discussion started by: MizzGail
3 Replies

10. Shell Programming and Scripting

how to capture compilation errors with Makfile

Hello I have big compilation project when I run the top make file I have problem to find the errors that acres in the sub directories because the make file keeps Running the compilation. is there any way to perform summry of the errors when the Top makefile done running ? thanks (2 Replies)
Discussion started by: umen
2 Replies
Login or Register to Ask a Question