changeset 22715:80c87908ff1d

Patch from Dylan Simon to fix a compile error when compiling from a different directory. Closes #5614.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Thu, 24 Apr 2008 02:16:30 +0000
parents e587650c5d16
children 7e5d7ebcd24e 979a81468e19
files libpurple/plugins/perl/Makefile.am
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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