Bug 1412544

Summary: icedtea-web-1.7-0.1.pre03 ships prebuilt object files
Product: [Fedora] Fedora Reporter: Ville Skyttä <ville.skytta>
Component: icedtea-webAssignee: jiri vanek <jvanek>
Status: CLOSED CURRENTRELEASE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: urgent Docs Contact:
Priority: urgent    
Version: rawhideCC: ahughes, dbhole, jvanek, omajid
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: If docs needed, set a value
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2017-01-12 10:16:41 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 496968    

Description Ville Skyttä 2017-01-12 09:21:32 UTC
icedtea-web-1.7-0.1.pre03 appears to ship prebuilt object files. For example, no trace of C/C++ compilation is in the build logs, the i686 packages have dependencies to 64bit shared libs, and debuginfos are faulty.

$ fedpkg prep
$ find icedtea-web-1.7pre -name "*.o" -o -name "*.so"
icedtea-web-1.7pre/plugin/icedteanp/IcedTeaScriptablePluginObject.o
icedtea-web-1.7pre/plugin/icedteanp/IcedTeaPlugin.so
icedtea-web-1.7pre/plugin/icedteanp/IcedTeaParseProperties.o
icedtea-web-1.7pre/plugin/icedteanp/IcedTeaPluginUtils.o
icedtea-web-1.7pre/plugin/icedteanp/IcedTeaNPPlugin.o
icedtea-web-1.7pre/plugin/icedteanp/IcedTeaJavaRequestProcessor.o
icedtea-web-1.7pre/plugin/icedteanp/IcedTeaPluginRequestProcessor.o

Comment 1 jiri vanek 2017-01-12 10:10:38 UTC
Hi!

Indeed. the .o files slipped to tarball.  My apologise. TYVM for bugreport!

Comment 2 jiri vanek 2017-01-12 10:16:41 UTC
Fixed in https://koji.fedoraproject.org/koji/taskinfo?taskID=17254634

TYVM!

Comment 3 Andrew John Hughes 2017-01-12 12:13:45 UTC
It's always worth making tarballs from a clean checkout:

$ hg clone <repo>
$ cd <repo_dir>
$ ./autogen.sh
$ cd ..
$ mkdir <build_dir>
$ cd <build_dir>
$ ../<repo_dir>/configure ; make dist

Comment 4 jiri vanek 2017-01-12 12:17:10 UTC
Sure, and I does. I had to cd to bad directory or something like that. Thanx!