Sha256: 62af3bddf66449f64d69ea2e4c37eb6e37f21a7b02406cd80b90b1bfc5fbbe19

Contents?: true

Size: 749 Bytes

Versions: 5

Compression:

Stored size: 749 Bytes

Contents

dnl Copyright (C) 1993-2002 Free Software Foundation, Inc.
dnl This file is free software, distributed under the terms of the GNU
dnl General Public License.  As a special exception to the GNU General
dnl Public License, this file may be distributed as part of a program
dnl that contains a configuration script generated by Autoconf, under
dnl the same distribution terms as the rest of that program.

dnl From Bruno Haible, Marcus Daniels.

AC_PREREQ(2.13)

AC_DEFUN([CL_PROG_CP],
[AC_CACHE_CHECK(how to copy files, cl_cv_prog_cp, [
echo "blabla" > conftest.x
err=`/bin/sh -c "cp -p conftest.x conftest.y 2>&1"`
if test -z "$err"; then
  cl_cv_prog_cp='cp -p'
else
  cl_cv_prog_cp='cp'
fi
rm -f conftest*
])
CP="$cl_cv_prog_cp"
AC_SUBST(CP)dnl
])

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
controller_scaffolding-1.0.3 test/dummy/libiconv-1.13.1/m4/cp.m4
controller_scaffolding-1.0.2 test/dummy/libiconv-1.13.1/m4/cp.m4
controller_scaffolding-1.0.1 test/dummy/libiconv-1.13.1/m4/cp.m4
controller_scaffolding-1.0.0 test/dummy/libiconv-1.13.1/m4/cp.m4
controller_scaffolding-0.1.5 test/dummy/libiconv-1.13.1/m4/cp.m4