changeset 9169:3df7197abfe2

[gaim-migrate @ 9954] Parallel compiles of the perl plugin should work better (Stu Tomlinson). committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 03 Jun 2004 01:25:22 +0000
parents 1a446f2a1822
children 456ef1f4ba19
files ChangeLog plugins/perl/Makefile.am
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Jun 02 13:59:35 2004 +0000
+++ b/ChangeLog	Thu Jun 03 01:25:22 2004 +0000
@@ -11,6 +11,8 @@
 	* Non-looping animated icons no longer cause Gaim to freeze
 	* Fixed a crash in SILC that sometimes happened when resolving
 	  the buddy list (Pekka Riikonen)
+	* Parallel compiles of the perl plugin should work better
+	  (Stu Tomlinson)
 
 version 0.78 (05/30/2004):
 	New Features:
--- a/plugins/perl/Makefile.am	Wed Jun 02 13:59:35 2004 +0000
+++ b/plugins/perl/Makefile.am	Thu Jun 03 01:25:22 2004 +0000
@@ -18,7 +18,7 @@
 	.libs/DynaLoader.a
 
 .libs/libperl_orig.a:
-	@if [ ! -d .libs ]; then mkdir .libs; fi
+	@mkdir -p .libs
 	@rm -f .libs/libperl_orig.a
 	@if [ x$(LIBPERL_A) = x ]; then \
 		touch .libs/libperl_orig.a; \
@@ -27,7 +27,7 @@
 	fi
 
 .libs/DynaLoader.a:
-	@if [ ! -d .libs ]; then mkdir .libs; fi
+	@mkdir -p .libs
 	@rm -f .libs/DynaLoader.a
 	@if [ x$(DYNALOADER_A) = x ]; then \
 		touch .libs/DynaLoader.a; \