diff options
-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-13 Jan Nijtmans <nijtmans@users.sf.net> * unix/tcl.m4: Cross-compile support for Win and UNIX (backported) diff --git a/unix/Makefile.in b/unix/Makefile.in index d31d582..d90ca68 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.143.2.9 2010/08/27 00:19:28 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.143.2.10 2010/12/17 17:57:21 stwo Exp $ # Current Tk version; used in various names. @@ -1476,13 +1476,13 @@ checkexports: $(TK_LIB_FILE) # system. # -rpm: all /bin/rpm +rpm: all rm -f THIS.TCL.SPEC echo "%define _builddir `pwd`" > THIS.TK.SPEC echo "%define _rpmdir `pwd`/RPMS" >> THIS.TK.SPEC cat tk.spec >> THIS.TK.SPEC mkdir -p RPMS/i386 - rpm -bb THIS.TK.SPEC + rpmbuild -bb THIS.TK.SPEC mv RPMS/i386/*.rpm . rm -rf RPMS THIS.TK.SPEC |