diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | check-exports | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,6 +1,12 @@ 2008-01-12 Jan Schmidt <Jan.Schmidt@sun.com> * check-exports: + Restore the cleanup rm of our tmp file which I didn't mean to leave + commented out. + +2008-01-12 Jan Schmidt <Jan.Schmidt@sun.com> + + * check-exports: Fixes to make check-export work on both Solaris and Linux * m4/gst-error.m4: 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; |