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-17 Jan Nijtmans <nijtmans@users.sf.net> * generic/tkMain.c: refactor isatty() function for Windows. diff --git a/unix/Makefile.in b/unix/Makefile.in index f783da5..1810824 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.171 2010/12/16 01:55:02 stwo Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.172 2010/12/17 17:57:45 stwo Exp $ # Current Tk version; used in various names. @@ -1493,13 +1493,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 |
