Displaying 1 result from an estimated 1 matches for "exec01".
2013 Jul 02
1
rpmbuild environment CentOS5 vs CentOS6
On CentOS5 I was used to create a simple spec file where at the end I'll
declare files and directories I wan't to package:
--< Snip >--
%files
%dir /opt/myapp
%dir /opt/myapp/bin
%dir /opt/myapp/etc
/opt/myapp/bin/exec01
/opt/myapp/etc/myapp.conf
----
I'll copy the file in /usr/src/redhat/SPECS and run "rpmbuild -bb
myapp.spec".
On CentOS6 rpm-build package no longer creates the /usr/src/redhat/...
directory tree. I followed the CentOS6 Wiki instructions to setup my
rpmbuild environment for a regula...