summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfields_t <fields_t@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-09-10 20:32:57 +0000
committerfields_t <fields_t@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-09-10 20:32:57 +0000
commit5255f6c665d555ee24e07180e79cec1ec5b7e456 (patch)
treebc3c043340e49e496eba0aa75bc47add00f47911
parente99230bf8d43cbab660b2335d329fcec08e6599c (diff)
downloadATCD-5255f6c665d555ee24e07180e79cec1ec5b7e456.tar.gz
configuring path of mogrify
-rw-r--r--ChangeLog13
-rwxr-xr-xbin/performance_stats.sh7
2 files changed, 19 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b95213dbfb8..a721a287d2c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Wed Sep 10 13:26:14 MST 2003 Trevor Fields <fields_t@ociweb.com>
+
+ * bin/performance_stats.sh:
+
+ Changed the path to mogrify. It uses /usr/bin/X11/bin path if it is
+ not present in the /usr/local/bin
+
Wed Sep 10 11:48:31 2003 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/TemplateParser.pm:
@@ -60,6 +67,12 @@ Wed Sep 10 08:04:25 2003 Chad Elliott <elliott_c@ociweb.com>
by multiple instances of make. This only has an effect on the
GNUACE workspaces.
+Tue Sep 9 15:04:51 MST 2003 Trevor Fields <fields_t@ociweb.com>
+
+ * examples/Web_Crawler/Mem_Map_Stream.h:
+
+ Changed '#define once' back to '#pragma once'
+
Tue Sep 9 08:56:42 2003 Jeff Parsons <j.parsons@vanderbilt.edu>
* ace/ace_dll.dsp:
diff --git a/bin/performance_stats.sh b/bin/performance_stats.sh
index 5228fae6bad..13944f66040 100755
--- a/bin/performance_stats.sh
+++ b/bin/performance_stats.sh
@@ -168,11 +168,16 @@ _EOF_
/bin/cp CORBA.png All.png $DEST/images/
+MOGRIFY=/usr/local/bin/mogrify
+if [ ! -x "$MOGRIFY" ]; then
+ MOGRIFY=/usr/X11R6/bin/mogrify
+fi
+
(
cd $DEST/images
/bin/cp *.png thumbnails
for i in *.png; do
- /usr/local/bin/mogrify -geometry '25%' thumbnails/$i
+ $MOGRIFY -geometry '25%' thumbnails/$i
done
)