To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=106985





------- Additional comments from c...@openoffice.org Wed Nov 25 20:33:48 +0000 
2009 -------
yeah the E flag, FWIW I use 

for foo in `find $RPM_BUILD_ROOT/%{instdir} -name "*" -exec file {} \;| grep ":
ELF" | cut -d: -f 1` ; do
        chmod +wx $foo
        ls -asl $foo
        result=`readelf -d $foo | grep TEXTREL` || true
        if [ "$result" != "" ]; then
                echo "TEXTREL Warning: $foo is b0rked (-fpic missing)"
                pic=1
        fi
        result=`readelf -l $foo | grep GNU_STACK | grep RWE` || true
        if [ "$result" != "" ]; then
                echo "GNU_STACK Warning: $foo is b0rked (-noexecstack missing)"
                executable=1
        fi
done

in my post-install script to test for busted-ness.

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


---------------------------------------------------------------------
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org

Reply via email to