Actions

icon Post
text/html Subscribe
text/html Unsubscribe

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Fix dependencies for 'check' and 'install'


  • To: vsipl++@xxxxxxxxxxxxxxxx
  • Subject: Fix dependencies for 'check' and 'install'
  • From: Jules Bergmann <jules@xxxxxxxxxxxxxxxx>
  • Date: Mon, 09 Jan 2006 18:51:17 -0500

The install dependency fixes the problem we were seeing today with ATLAS failing to install: it was not being built. This is similar to problem Stefan fixed with FFTW.

Patch applied.

            -- Jules
Index: ChangeLog
===================================================================
RCS file: /home/cvs/Repository/vpp/ChangeLog,v
retrieving revision 1.360
diff -r1.360 ChangeLog
0a1,5
> 2006-01-09 Jules Bergmann  <jules@xxxxxxxxxxxxxxxx>
> 
> 	* tests/GNUmakefile.inc.in (check): Fix dependency on libs.
> 	* vendor/GNUmakefile.inc.in (install): Add dependency to vendor_LIBS.
> 
Index: tests/GNUmakefile.inc.in
===================================================================
RCS file: /home/cvs/Repository/vpp/tests/GNUmakefile.inc.in,v
retrieving revision 1.8
diff -r1.8 GNUmakefile.inc.in
27c27
< check::	libs $(tests_qmtest_extensions)
---
> check::	$(libs) $(tests_qmtest_extensions)
Index: vendor/GNUmakefile.inc.in
===================================================================
RCS file: /home/cvs/Repository/vpp/vendor/GNUmakefile.inc.in,v
retrieving revision 1.9
diff -r1.9 GNUmakefile.inc.in
66c66
< install::
---
> install:: $(vendor_LIBS)