mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-10 23:20:58 +00:00
83ec09f66c
Slightly improve memory cleanup in Pl_DCT Make it easier to test with valgrind
11 lines
156 B
Bash
Executable File
11 lines
156 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
pwd
|
|
dir=$(dirname $1)
|
|
if [ ! -x $dir/exec-z ]; then
|
|
ln -f make/exec-z $dir/exec-z
|
|
fi
|
|
mkdir -p $dir/z
|
|
mv $1 $dir/z
|
|
ln -f $dir/exec-z $1
|