pidgin: 90011f88: Patch from Dylan Simon to fix a compile ...

sadrul at pidgin.im sadrul at pidgin.im
Wed Apr 23 22:20:59 EDT 2008


-----------------------------------------------------------------
Revision: 90011f8844f95be26206d5698b603f1692f319a0
Ancestor: f25819178be96dc0eda7c64705152dc16d73dc81
Author: sadrul at pidgin.im
Date: 2008-04-24T02:16:30
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/90011f8844f95be26206d5698b603f1692f319a0

Modified files:
        libpurple/plugins/perl/Makefile.am

ChangeLog: 

Patch from Dylan Simon to fix a compile error when compiling from a
different directory. Closes #5614.

-------------- next part --------------
============================================================
--- libpurple/plugins/perl/Makefile.am	7e440748e6febfac3a16471e88979d1726b664e1
+++ libpurple/plugins/perl/Makefile.am	3d6eed26f7919fc7328d0d005721791f68f08f00
@@ -90,7 +90,7 @@ common/Makefile: common/Makefile.PL
 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 @@ distclean-generic:
 
 	@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
 


More information about the Commits mailing list