[pisa-src] r1399 - trunk/configure.ac

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Thu, 29 Oct 2009 12:57:31 +0100

Author: biurrun
Date: Thu Oct 29 12:57:31 2009
New Revision: 1399

Log:
Remove another pointless variable indirection.

Modified:
   trunk/configure.ac

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac  Thu Oct 29 12:51:04 2009        (r1398)
+++ trunk/configure.ac  Thu Oct 29 12:57:31 2009        (r1399)
@@ -132,16 +132,14 @@
 fi
 AM_CONDITIONAL(PISA_WITH_HIPL, test x"$pisa_with_hipl" = x"yes")
 
-AC_SUBST(PISA_LIBPISA, "$TOPSRC/libpisa")
-AC_SUBST(PISA_LIBPISA_LIB_STATIC, "$PISA_LIBPISA/.libs/libpisa.a")
-AC_SUBST(PISA_LIBPISA_LIB_DYNAMIC, "$PISA_LIBPISA/.libs/libpisa.so")
+AC_SUBST(PISA_LIBPISA_LIB_STATIC, "$TOPSRC/libpisa/.libs/libpisa.a")
+AC_SUBST(PISA_LIBPISA_LIB_DYNAMIC, "$TOPSRC/libpisa/.libs/libpisa.so")
 
 AC_SUBST(PISA_PISACD, "$TOPSRC/pisacd")
 AC_SUBST(PISA_PISASD, "$TOPSRC/pisasd")
 
-AC_SUBST(PISA_PERFORMANCE, "$TOPSRC/performance")
-AC_SUBST(PISA_PERFORMANCE_LIB_STATIC, 
"$PISA_PERFORMANCE/.libs/libperformance.a")
-AC_SUBST(PISA_PERFORMANCE_LIB_DYNAMIC, 
"$PISA_PERFORMANCE/.libs/libperformance.so")
+AC_SUBST(PISA_PERFORMANCE_LIB_STATIC, 
"$TOPSRC/performance/.libs/libperformance.a")
+AC_SUBST(PISA_PERFORMANCE_LIB_DYNAMIC, 
"$TOPSRC/performance/.libs/libperformance.so")
 
 # If no --prefix option is passed to configure, $prefix is empty. But we want
 # to expand $sysconfdir, which defaults to ${prefix}/etc. So set $prefix.

Other related posts:

  • » [pisa-src] r1399 - trunk/configure.ac - Diego Biurrun