aboutsummaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2019-02-08 17:32:47 -0500
committerElliott Sales de Andrade <quantum.analyst@gmail.com>2019-02-08 17:32:47 -0500
commitd8f09e00702c0f77a611d7aa5f002d2ede861f5c (patch)
treec6ad8fa95ec5752d340fa1df9a5a223ff4429549 /data
parented3cf22d7ee4f3cf88919502f4ab753679523869 (diff)
downloadPROJ-d8f09e00702c0f77a611d7aa5f002d2ede861f5c.tar.gz
PROJ-d8f09e00702c0f77a611d7aa5f002d2ede861f5c.zip
Remove data/install.in.
The files referenced in it (and more) are already installed by listing them in `pkgdata_DATA` (for autotools) and in the `install` command (for CMake).
Diffstat (limited to 'data')
-rwxr-xr-xdata/install.in27
1 files changed, 0 insertions, 27 deletions
diff --git a/data/install.in b/data/install.in
deleted file mode 100755
index 6c26b44a..00000000
--- a/data/install.in
+++ /dev/null
@@ -1,27 +0,0 @@
-:
-# SCCSID @(#)install.in 4.8 95/09/24 GIE REL
-#
-# Installation script all PROJ.4 system reference files.
-#
-# This script must be executed after compilation of proj library.
-#
-# Execute as:
-#
-# install
-#
-# ------------------------------------------------------------
-prefix=/usr/local
-#
-lib=${prefix}/lib/proj.4
-# Copy in "init" files
-for x in nad27 nad83 world GL27
-do
- cp $x ${lib}/$x
- if [ $? -ne 0 ] ; then
- echo "init copying failed for file $x"
- else
- echo "file $x installed"
- fi
-done
-echo "normal completion"
-exit 0