Use 'cp -pR' as a fallback for lndir, remove $(shell) construct from makefile.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35872 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell
2005-10-10 16:29:02 +00:00
parent 21a186a1fc
commit bcaab0f92e
4 changed files with 98 additions and 35 deletions

View File

@@ -1517,6 +1517,12 @@ fi dnl not GNU make
dnl needed for making link to setup.h
AC_PROG_LN_S
dnl lndir can be used by "make dist" to save copying files
CP_PR='cp -pR'
AC_CHECK_PROGS(LNDIR, lndir, [$CP_PR])
AC_SUBST(CP_PR)
dnl ------------------------------------------------------------------------
dnl Platform specific tests
dnl ------------------------------------------------------------------------