# HG changeset patch # User Sadrul Habib Chowdhury # Date 1209003390 0 # Node ID 80c87908ff1d4880c209d44945e20914f6be738a # Parent e587650c5d1683f78eae31bbae11ce9782fcf85b Patch from Dylan Simon to fix a compile error when compiling from a different directory. Closes #5614. diff -r e587650c5d16 -r 80c87908ff1d libpurple/plugins/perl/Makefile.am --- a/libpurple/plugins/perl/Makefile.am Thu Apr 24 01:46:38 2008 +0000 +++ b/libpurple/plugins/perl/Makefile.am Thu Apr 24 02:16:30 2008 +0000 @@ -90,7 +90,7 @@ common/Makefile: common/Makefile.PL @if test "x${top_srcdir}" != "x${top_builddir}"; then \ for f in ${common_sources}; do \ - ${LN_S} -f ../${srcdir}/$$f $$f; \ + ${LN_S} -f ${srcdir}/$$f $$f; \ done; \ fi @cd common && $(perlpath) Makefile.PL $(PERL_MM_PARAMS) @@ -148,7 +148,7 @@ @if test "x${top_srcdir}" != "x${top_builddir}"; then \ for f in ${common_sources}; do \ - ${LN_S} -f ../${srcdir}/$$f $$f; \ + ${LN_S} -f ${srcdir}/$$f $$f; \ done; \ fi