public inbox for systemtap@sourceware.org
 help / color / mirror / Atom feed
* [Bug runtime/9875] New: building rpm fails in checking for unpackaged file
@ 2009-02-20  6:49 wenji dot huang at oracle dot com
  2009-02-20 11:25 ` [Bug runtime/9875] " wenji dot huang at oracle dot com
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: wenji dot huang at oracle dot com @ 2009-02-20  6:49 UTC (permalink / raw)
  To: systemtap

In building systemtap 0.9 rpm, one file is installed but unpackaged. 

#rpmbuild -bb systemtap.spec
[...]
Checking for unpackaged file(s): /usr/lib/rpm/check-files
/var/tmp/systemtap-0.9-1-root-root
error: Installed (but unpackaged) file(s) found:
   /usr/lib/systemtap/libsduprobes.a


RPM build errors:
    Installed (but unpackaged) file(s) found:
   /usr/lib/systemtap/libsduprobes.a

-- 
           Summary: building rpm fails in checking for unpackaged file
           Product: systemtap
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: runtime
        AssignedTo: scox at redhat dot com
        ReportedBy: wenji dot huang at oracle dot com
                CC: systemtap at sources dot redhat dot com


http://sourceware.org/bugzilla/show_bug.cgi?id=9875

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug runtime/9875] building rpm fails in checking for unpackaged file
  2009-02-20  6:49 [Bug runtime/9875] New: building rpm fails in checking for unpackaged file wenji dot huang at oracle dot com
@ 2009-02-20 11:25 ` wenji dot huang at oracle dot com
  2009-02-25  9:29 ` wenji dot huang at oracle dot com
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: wenji dot huang at oracle dot com @ 2009-02-20 11:25 UTC (permalink / raw)
  To: systemtap



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED


http://sourceware.org/bugzilla/show_bug.cgi?id=9875

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug runtime/9875] building rpm fails in checking for unpackaged file
  2009-02-20  6:49 [Bug runtime/9875] New: building rpm fails in checking for unpackaged file wenji dot huang at oracle dot com
  2009-02-20 11:25 ` [Bug runtime/9875] " wenji dot huang at oracle dot com
@ 2009-02-25  9:29 ` wenji dot huang at oracle dot com
  2009-02-26  7:59 ` mhiramat at redhat dot com
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: wenji dot huang at oracle dot com @ 2009-02-25  9:29 UTC (permalink / raw)
  To: systemtap


------- Additional Comments From wenji dot huang at oracle dot com  2009-02-25 07:21 -------
Shall we make libsduprobes.a uninstalled or add it to file section in spec file?


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |scox at redhat dot com


http://sourceware.org/bugzilla/show_bug.cgi?id=9875

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug runtime/9875] building rpm fails in checking for unpackaged file
  2009-02-20  6:49 [Bug runtime/9875] New: building rpm fails in checking for unpackaged file wenji dot huang at oracle dot com
  2009-02-20 11:25 ` [Bug runtime/9875] " wenji dot huang at oracle dot com
  2009-02-25  9:29 ` wenji dot huang at oracle dot com
@ 2009-02-26  7:59 ` mhiramat at redhat dot com
  2009-02-26  8:08 ` scox at redhat dot com
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: mhiramat at redhat dot com @ 2009-02-26  7:59 UTC (permalink / raw)
  To: systemtap


------- Additional Comments From mhiramat at redhat dot com  2009-02-25 21:30 -------
As far as I can see, Makefile.am is broken.
I'm not sure why, but below libsduprobes library related lines are included in
the conditional region of BUILD_ELFUTILS.
---
pkglib_LIBRARIES = libsduprobes.a
libsduprobes_a_SOURCES = runtime/sduprobes.c
sduprobes.o: runtime/sduprobes.c
        $(CC) -g -O0 -c -o $@ $<
---

These lines should be separated from it, or just be commented out.


-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=9875

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug runtime/9875] building rpm fails in checking for unpackaged file
  2009-02-20  6:49 [Bug runtime/9875] New: building rpm fails in checking for unpackaged file wenji dot huang at oracle dot com
                   ` (2 preceding siblings ...)
  2009-02-26  7:59 ` mhiramat at redhat dot com
@ 2009-02-26  8:08 ` scox at redhat dot com
  2009-02-27 14:46 ` wenji dot huang at oracle dot com
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: scox at redhat dot com @ 2009-02-26  8:08 UTC (permalink / raw)
  To: systemtap


------- Additional Comments From scox at redhat dot com  2009-02-25 22:14 -------
libsduprobes was an alternative static probes method that has been replaced by
inline probes defined in sdt.h, so it actually doesn't need to be installed.


-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=9875

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug runtime/9875] building rpm fails in checking for unpackaged file
  2009-02-20  6:49 [Bug runtime/9875] New: building rpm fails in checking for unpackaged file wenji dot huang at oracle dot com
                   ` (3 preceding siblings ...)
  2009-02-26  8:08 ` scox at redhat dot com
@ 2009-02-27 14:46 ` wenji dot huang at oracle dot com
  2009-03-03 14:11 ` wenji dot huang at oracle dot com
  2009-03-19  2:43 ` fche at redhat dot com
  6 siblings, 0 replies; 8+ messages in thread
From: wenji dot huang at oracle dot com @ 2009-02-27 14:46 UTC (permalink / raw)
  To: systemtap


------- Additional Comments From wenji dot huang at oracle dot com  2009-02-27 08:39 -------
Created an attachment (id=3776)
 --> (http://sourceware.org/bugzilla/attachment.cgi?id=3776&action=view)
workaround for the bug

Beside the patch, Seems sduprobes.c is no longer needed.

-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=9875

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug runtime/9875] building rpm fails in checking for unpackaged file
  2009-02-20  6:49 [Bug runtime/9875] New: building rpm fails in checking for unpackaged file wenji dot huang at oracle dot com
                   ` (4 preceding siblings ...)
  2009-02-27 14:46 ` wenji dot huang at oracle dot com
@ 2009-03-03 14:11 ` wenji dot huang at oracle dot com
  2009-03-19  2:43 ` fche at redhat dot com
  6 siblings, 0 replies; 8+ messages in thread
From: wenji dot huang at oracle dot com @ 2009-03-03 14:11 UTC (permalink / raw)
  To: systemtap


------- Additional Comments From wenji dot huang at oracle dot com  2009-03-03 09:53 -------
commit the code, see 34309209f7b8f957125f34c263dcea870ea76c8e

-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=9875

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug runtime/9875] building rpm fails in checking for unpackaged file
  2009-02-20  6:49 [Bug runtime/9875] New: building rpm fails in checking for unpackaged file wenji dot huang at oracle dot com
                   ` (5 preceding siblings ...)
  2009-03-03 14:11 ` wenji dot huang at oracle dot com
@ 2009-03-19  2:43 ` fche at redhat dot com
  6 siblings, 0 replies; 8+ messages in thread
From: fche at redhat dot com @ 2009-03-19  2:43 UTC (permalink / raw)
  To: systemtap


------- Additional Comments From fche at redhat dot com  2009-03-18 18:34 -------
fixed


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


http://sourceware.org/bugzilla/show_bug.cgi?id=9875

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2009-03-18 18:34 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-02-20  6:49 [Bug runtime/9875] New: building rpm fails in checking for unpackaged file wenji dot huang at oracle dot com
2009-02-20 11:25 ` [Bug runtime/9875] " wenji dot huang at oracle dot com
2009-02-25  9:29 ` wenji dot huang at oracle dot com
2009-02-26  7:59 ` mhiramat at redhat dot com
2009-02-26  8:08 ` scox at redhat dot com
2009-02-27 14:46 ` wenji dot huang at oracle dot com
2009-03-03 14:11 ` wenji dot huang at oracle dot com
2009-03-19  2:43 ` fche at redhat dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).