RE: [Panicsel-developers] makefile error
Brought to you by:
arcress
|
From: Cress, A. R <and...@in...> - 2003-03-10 14:59:55
|
This needs to go either way. With a test for rpm version.
For RH 8.0 the rpmbuild utility exists.
For other distros, and RH < 8.0, "rpm -bs" is correct.
something like:
rpmbuild --version >/dev/null 2>&1
if [ $? -eq 0 ]
then
rpmbuild -bs
else
rpm -bs
fi
Andy
-----Original Message-----
From: Guo, Min
Sent: Sunday, March 09, 2003 8:57 PM
To: pan...@li...
Subject: [Panicsel-developers] makefile error
Hi
Platform Cossbay, Redhat 8.0. RPM version 4.1
When I run the make ,the system outputs
rpm -bs panicsel.spec
-bs: unknown option
make: *** [srpm] Error 1
So change the rpm to rpmbuild, we can compile the source
successfully.
Thanks
Guo Min
-------------------------------------------------------
This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger
for complex code. Debugging C/C++ programs can leave you feeling lost and
disoriented. TotalView can help you find your way. Available on major UNIX
and Linux platforms. Try it free. www.etnus.com
_______________________________________________
Panicsel-developers mailing list
Pan...@li...
https://lists.sourceforge.net/lists/listinfo/panicsel-developers
|