# HG changeset patch # User Christopher Rogers # Date 1323840200 0 # Node ID 2434bac072912bc79da8a4813fa0a51e1b204fc9 # Parent 2101d582c6f4a847ad1d88f2cae32019f25c7658 sagan*: Cd to $src in compile_rules. diff -r 2101d582c6f4 -r 2434bac07291 sagan-mysql/receipt --- a/sagan-mysql/receipt Wed Dec 14 05:22:19 2011 +0000 +++ b/sagan-mysql/receipt Wed Dec 14 05:23:20 2011 +0000 @@ -17,6 +17,7 @@ # Rules to configure and make the package. compile_rules() { + cd $src ./configure $CONFIGURE_ARGS \ --sysconfdir=/etc/sagan \ --disable-postgresql \ diff -r 2101d582c6f4 -r 2434bac07291 sagan-pgsql/receipt --- a/sagan-pgsql/receipt Wed Dec 14 05:22:19 2011 +0000 +++ b/sagan-pgsql/receipt Wed Dec 14 05:23:20 2011 +0000 @@ -17,7 +17,8 @@ # Rules to configure and make the package. compile_rules() { - ./configure $CONFIGURE_ARGS \ + cd $src + ./configure $CONFIGURE_ARGS \ --sysconfdir=/etc/sagan \ --with-postgresql-includes=/usr/include/postgresql \ --with-postgresql-libraries=/usr/lib/postgresql \ diff -r 2101d582c6f4 -r 2434bac07291 sagan/receipt --- a/sagan/receipt Wed Dec 14 05:22:19 2011 +0000 +++ b/sagan/receipt Wed Dec 14 05:23:20 2011 +0000 @@ -15,6 +15,7 @@ # Rules to configure and make the package. compile_rules() { + cd $src ./configure $CONFIGURE_ARGS \ --sysconfdir=/etc/sagan \ --disable-mysql \