summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-12-28 17:57:41 -0500
committerMichael Larabel <michael@phx-laptop.(none)>2008-12-28 17:57:41 -0500
commitdb60c7a9c98236fe7c10c917ad248e148a57e52a (patch)
tree400a13eba409c509000560ff10b272e515249b5c
parent69b03ddb43d08054e668932a9a0dc806b8b16f2a (diff)
downloadphoronix-test-suite-upstream-db60c7a9c98236fe7c10c917ad248e148a57e52a.tar.gz
phoronix-test-suite-upstream-db60c7a9c98236fe7c10c917ad248e148a57e52a.tar.xz
phoronix-test-suite-upstream-db60c7a9c98236fe7c10c917ad248e148a57e52a.zip
pts: Add external dependencies and without-perl build argument to
graphics-magick test profile
-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 ..