diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2008-01-12 19:40:02 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2008-01-12 19:40:02 +0000 |
commit | c67241ed5661b56da42c9f35f5be27ac738a5d00 (patch) | |
tree | 4dbc2914392131188af1dd0bc213544a99ca3fb0 /check-exports | |
parent | 95c432055b4f1f3f66a54c3f57b7f689e10558f4 (diff) |
check-exports: Restore the cleanup rm of our tmp file which I didn't mean to leave commented out.
Original commit message from CVS:
* check-exports:
Restore the cleanup rm of our tmp file which I didn't mean to leave
commented out.
Diffstat (limited to 'check-exports')
-rwxr-xr-x | check-exports | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/check-exports b/check-exports index ae72020..16df41f 100755 --- a/check-exports +++ b/check-exports @@ -59,7 +59,7 @@ nm $NMARGS $lib_path | awk \ diffoutput=`diff -u $def_path $lib_result` -# rm $lib_result +rm $lib_result if test "x$diffoutput" = "x"; then exit 0; |