Compare commits
1 Commits
libxml-cxx
...
libxml-cxx
Author | SHA1 | Date | |
---|---|---|---|
|
d0a298c6f2 |
@@ -19,7 +19,7 @@ This package contains only the shared libraries required at runtime.
|
|||||||
%setup -q
|
%setup -q
|
||||||
./configure --prefix=/usr \
|
./configure --prefix=/usr \
|
||||||
--docdir=/usr/share/doc/packages/@PACKAGENAME@ \
|
--docdir=/usr/share/doc/packages/@PACKAGENAME@ \
|
||||||
--libdir=/usr/%_lib
|
--libdir=/usr/lib
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make
|
make
|
||||||
@@ -32,7 +32,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
/usr/%_lib/@PACKAGENAME@.so.*
|
/usr/lib/@PACKAGENAME@.so.*
|
||||||
%doc
|
%doc
|
||||||
/usr/share/doc/packages/@PACKAGENAME@/AUTHORS
|
/usr/share/doc/packages/@PACKAGENAME@/AUTHORS
|
||||||
/usr/share/doc/packages/@PACKAGENAME@/COPYING
|
/usr/share/doc/packages/@PACKAGENAME@/COPYING
|
||||||
@@ -54,10 +54,10 @@ This Package contains all files required for developement.
|
|||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
/usr/%_lib/@PACKAGENAME@.so
|
/usr/lib/@PACKAGENAME@.so
|
||||||
/usr/%_lib/@PACKAGENAME@.a
|
/usr/lib/@PACKAGENAME@.a
|
||||||
/usr/%_lib/pkgconfig
|
/usr/lib/pkgconfig
|
||||||
/usr/%_lib/@PACKAGENAME@.la
|
/usr/lib/@PACKAGENAME@.la
|
||||||
/usr/include/
|
/usr/include/
|
||||||
/usr/share/pkgconfig
|
/usr/share/pkgconfig
|
||||||
%doc
|
%doc
|
||||||
|
@@ -1303,7 +1303,7 @@ namespace xml {
|
|||||||
for (xml::Node::size_type i(0); i<node->children(); ++i) {
|
for (xml::Node::size_type i(0); i<node->children(); ++i) {
|
||||||
typename CONTAINER_TYPE::value_type tmp;
|
typename CONTAINER_TYPE::value_type tmp;
|
||||||
Serialize::fromNode(&tmp, (*node)[i]); // reads into tmp
|
Serialize::fromNode(&tmp, (*node)[i]); // reads into tmp
|
||||||
this->push_back(tmp);
|
push_back(tmp);
|
||||||
}
|
}
|
||||||
return is;
|
return is;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user