summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pts/test-profiles/graphics-magick.xml1
-rwxr-xr-xpts/test-resources/graphics-magick/install.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/pts/test-profiles/graphics-magick.xml b/pts/test-profiles/graphics-magick.xml
index d3f314a..bc8799c 100644
--- a/pts/test-profiles/graphics-magick.xml
+++ b/pts/test-profiles/graphics-magick.xml
@@ -7,6 +7,7 @@
<Status>VERIFIED</Status>
<Maintainer>Michael Larabel</Maintainer>
<Extends>photo-sample</Extends>
+ <ExternalDependencies>build-utilities</ExternalDependencies>
<ProjectURL>http://www.graphicsmagick.org/</ProjectURL>
</TestProfile>
<TestInformation>
diff --git a/pts/test-resources/graphics-magick/install.sh b/pts/test-resources/graphics-magick/install.sh
index 5444c3b..0d51340 100755
--- a/pts/test-resources/graphics-magick/install.sh
+++ b/pts/test-resources/graphics-magick/install.sh
@@ -6,7 +6,7 @@ THIS_DIR=$(pwd)
mkdir $THIS_DIR/gm_
cd GraphicsMagick-1.3.3/
-./configure --prefix=$THIS_DIR/gm_ > /dev/null
+./configure --without-perl --prefix=$THIS_DIR/gm_ > /dev/null
make -j $NUM_CPU_JOBS
make install
cd ..