changeset 1041 | f7b7996e54f1 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/extras/uninstall.sh Tue Feb 02 23:22:49 2010 -0500 @@ -0,0 +1,10 @@ +#!/bin/sh + +if [ ! -f "./install_manifest.txt" ]; then + echo "ERROR: This needs to be run from your CMake build directory after installing." 1>&2 + exit 1 +fi + +xargs rm -vf < install_manifest.txt +exit 0 +