Hide Forgot
Description of problem: edit-livecd is in the upstream source and tarball, but is not packaged in the rpms. It needs to be included in the spec file. Version-Release number of selected component (if applicable): Current F14 and Current F16 versions How reproducible: Always Steps to Reproduce: 1. yum provides *bin/edit-livecd 2. 3. Actual results: No result found Expected results: shipped with livecd-tools Additional info:
Proposed patch diff --git a/livecd-tools.spec b/livecd-tools.spec index dc780df..204aa4d 100644 --- a/livecd-tools.spec +++ b/livecd-tools.spec @@ -84,6 +84,7 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/livecd-creator %{_bindir}/livecd-iso-to-disk %{_bindir}/livecd-iso-to-pxeboot +%{_bindir}/edit-livecd %{_bindir}/image-creator %{_bindir}/liveimage-mount %{_bindir}/mkbiarch
And Makefile update: diff --git a/Makefile b/Makefile index c2617f8..ca9c004 100644 --- a/Makefile +++ b/Makefile @@ -26,6 +26,7 @@ install: man $(INSTALL_PROGRAM) -D tools/liveimage-mount $(DESTDIR)/usr/bin/liveimage-mount $(INSTALL_PROGRAM) -D tools/livecd-iso-to-disk.sh $(DESTDIR)/usr/bin/livecd-iso-to-disk $(INSTALL_PROGRAM) -D tools/livecd-iso-to-pxeboot.sh $(DESTDIR)/usr/bin/livecd-iso-to-pxeboot + $(INSTALL_PROGRAM) -D tools/edit-livecd $(DESTDIR)/usr/bin/edit-livecd $(INSTALL_PROGRAM) -D tools/mkbiarch.py $(DESTDIR)/usr/bin/mkbiarch $(INSTALL_DATA) -D AUTHORS $(DESTDIR)/usr/share/doc/livecd-tools-$(VERSION)/AUTHORS $(INSTALL_DATA) -D COPYING $(DESTDIR)/usr/share/doc/livecd-tools-$(VERSION)/COPYING
Thanks!