Sure, here goes. The results of grepping the rpm.tmp file are
Code:
grep find rpm-tmp.83072
/usr/lib/rpm/find-debuginfo.sh "/usr/src/redhat/BUILD/bftpd-2.2"
And here we have the results from grepping the find-debuginfo file
Code:
grep find find-debuginfo.sh
#find-debuginfo.sh - automagically generate debug info and file list
# Usage: find-debuginfo.sh [--strict-build-id] [-g]
find "$RPM_BUILD_ROOT" ! -path "${debugdir}/*.debug" -type f \
find $RPM_BUILD_ROOT ! -path "${debugdir}/*" -type l -print |
find "${RPM_BUILD_ROOT}/usr/src/debug" -type d -print0 |
(cd "${RPM_BUILD_ROOT}/usr/lib"; find debug -type d) |
test ! -d lib/debug || find lib/debug ! -type d
test ! -d src/debug || find src/debug -mindepth 1 -maxdepth 1
(cd "${RPM_BUILD_ROOT}"; find usr/lib/debug -type d) |
Last, but not least, this is the spec file
Code:
%define name bftpd
%define version 2.2
%define release 1
%define prefix /usr
Summary: A small, fast and easy-to-configure FTP server.
Name: %{name}
Version: %{version}
Release: %{release}
License: GPL
Group: System Environment/Daemons
Vendor: Jesse Smith <jessefrgsmith@yahoo.ca>
URL: http://bftpd.sourceforge.net/
Source0: http://bftpd.sourceforge.net/downloads/rpm/%{name}-%{version}.tar.gz
BuildArch: i386
#BuildRoot: /var/tmp/%{name}-root
Provides: bftpd
%description
A very configurable small FTP server
bftpd is a easy-to-configure and small FTP server that supports chroot
without special directory preparation or configuration. Most FTP commands
are supported.
%prep
%setup
%build
make
%install
make install
%clean
rm -rf "$RPM_BUILD_ROOT"
%files
%defattr(-,root,root)
%config(noreplace) %verify(not mtime) /etc/bftpd.conf
%{prefix}/sbin/bftpd
%{prefix}/share/man/man8/bftpd.8
%changelog
Any direction you can give me would be great, thank you.