From bb1c3da3c12651f1c408d96dd6d33ae157bdadd6 Mon Sep 17 00:00:00 2001 From: Igor Pashev Date: Sat, 20 Oct 2012 14:42:03 +0400 Subject: Imported Upstream version 20120410 --- BLDLIBDWARF | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 BLDLIBDWARF (limited to 'BLDLIBDWARF') diff --git a/BLDLIBDWARF b/BLDLIBDWARF new file mode 100755 index 0000000..8309961 --- /dev/null +++ b/BLDLIBDWARF @@ -0,0 +1,30 @@ +#!/bin/sh +# +bldone () { + t=$1 + cd $t + # The following distclean will fail on a clean directory + # Ignore the failure + make distclean + ./configure + if [ $? != 0 ] + then + echo build failed + exit + fi + make + if [ $? != 0 ] + then + echo build failed + exit + fi + cd .. +} + +bldone libdwarf +bldone dwarfdump +bldone dwarfdump2 + + + + -- cgit v1.2.3