diff options
author | stwo <stwo> | 2010-12-17 17:55:44 (GMT) |
---|---|---|
committer | stwo <stwo> | 2010-12-17 17:55:44 (GMT) |
commit | 0440538b7ad50dd5141f92d24036f7ad45c799f7 (patch) | |
tree | a27a5018d1117abb34b0850af74048ebb9f46fe2 | |
parent | ea1de9848ccde7951194b1ed58065ee6b43f7c66 (diff) | |
download | tcl-0440538b7ad50dd5141f92d24036f7ad45c799f7.zip tcl-0440538b7ad50dd5141f92d24036f7ad45c799f7.tar.gz tcl-0440538b7ad50dd5141f92d24036f7ad45c799f7.tar.bz2 |
Use 'rpmbuild', not 'rpm' [Bug 2537626].
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | unix/Makefile.in | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,7 @@ +2010-12-17 Stuart Cassoff <stwo@users.sourceforge.net> + + * unix/Makefile.in: Use 'rpmbuild', not 'rpm' [Bug 2537626]. + 2010-12-16 Jan Nijtmans <nijtmans@users.sf.net> * generic/tclPanic.c: [Patch 3124554]: Move WishPanic from Tk to Tcl diff --git a/unix/Makefile.in b/unix/Makefile.in index 8eebff2..9e48a49 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -4,7 +4,7 @@ # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.311 2010/11/28 23:20:11 kennykb Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.312 2010/12/17 17:55:46 stwo Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -1871,13 +1871,13 @@ checkexports: $(TCL_LIB_FILE) # system. # -rpm: all /bin/rpm +rpm: all rm -f THIS.TCL.SPEC echo "%define _builddir `pwd`" > THIS.TCL.SPEC echo "%define _rpmdir `pwd`/RPMS" >> THIS.TCL.SPEC cat tcl.spec >> THIS.TCL.SPEC mkdir -p RPMS/i386 - rpm -bb THIS.TCL.SPEC + rpmbuild -bb THIS.TCL.SPEC mv RPMS/i386/*.rpm . rm -rf RPMS THIS.TCL.SPEC |