RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  ____________________________________________________________________________

  Server: rpm5.org                         Name:   Ralf S. Engelschall
  Root:   /v/rpm/cvs                       Email:  [EMAIL PROTECTED]
  Module: rpm                              Date:   25-Jul-2007 08:14:34
  Branch: HEAD                             Handle: 2007072507143400

  Modified files:
    rpm                     Makefile.am

  Log:
    the $< source specifier can be used reliably only in generic '.x.y:'
    rules/targets, not in regular rules/targets. At least AIX
    /usr/bin/make dislikes it, so replace with the source itself

  Summary:
    Revision    Changes     Path
    2.200       +2  -2      rpm/Makefile.am
  ____________________________________________________________________________

  patch -p0 <<'@@ .'
  Index: rpm/Makefile.am
  ============================================================================
  $ cvs diff -u -r2.199 -r2.200 Makefile.am
  --- rpm/Makefile.am   24 Jul 2007 08:40:55 -0000      2.199
  +++ rpm/Makefile.am   25 Jul 2007 06:14:34 -0000      2.200
  @@ -92,13 +92,13 @@
   rpm_LDFLAGS =                @LDFLAGS_STATIC@
   rpm_LDADD =          rpm.o $(myLDADD)
   rpm.o:       $(top_srcdir)/rpmqv.c
  -     $(COMPILE) -DIAM_RPMBT -DIAM_RPMDB -DIAM_RPMEIU -DIAM_RPMK -DIAM_RPMQV 
-o $@ -c $<
  +     $(COMPILE) -DIAM_RPMBT -DIAM_RPMDB -DIAM_RPMEIU -DIAM_RPMK -DIAM_RPMQV 
-o $@ -c $(top_srcdir)/rpmqv.c
   
   rpmbuild_SOURCES =   $(top_srcdir)/build.c
   rpmbuild_LDFLAGS =   @LDFLAGS_STATIC@
   rpmbuild_LDADD =     rpmbuild.o $(myLDADD)
   rpmbuild.o: $(top_srcdir)/rpmqv.c
  -     $(COMPILE) -DIAM_RPMBT -o $@ -c $<
  +     $(COMPILE) -DIAM_RPMBT -o $@ -c $(top_srcdir)/rpmqv.c
   
   .PHONY:      splint
   splint:
  @@ .
______________________________________________________________________
RPM Package Manager                                    http://rpm5.org
CVS Sources Repository                                rpm-cvs@rpm5.org

Reply via email to