Skip to content
Snippets Groups Projects
Commit b6b99736 authored by H. William Welliver III's avatar H. William Welliver III
Browse files

added support for --help

Rev: bin/install_module:1.8
parent ae493b1e
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,18 @@ ...@@ -2,6 +2,18 @@
# install_module <from> <to> # install_module <from> <to>
if [ "$1" = "--help" ] ; then
cat <<EOF
Installs a module (.pmod file or directory, or a .so file)
in a destination directory. Called by "make install".
Usage:
install_module source destination_directory
EOF
exit 0
fi
FROM="$1" FROM="$1"
TO="$2" TO="$2"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment