[openrtm-commit:02784] r3027 - in branches/RELENG_1_1/OpenRTM-aist: . src/lib/coil

openrtm @ openrtm.org openrtm @ openrtm.org
2017年 8月 30日 (水) 12:02:35 JST


Author: n-ando
Date: 2017-08-30 12:02:35 +0900 (Wed, 30 Aug 2017)
New Revision: 3027

Modified:
   branches/RELENG_1_1/OpenRTM-aist/configure.ac
   branches/RELENG_1_1/OpenRTM-aist/src/lib/coil/configure.ac
Log:
[compat,build] Adding -C/-p option to header install command. refs #4032

Modified: branches/RELENG_1_1/OpenRTM-aist/configure.ac
===================================================================
--- branches/RELENG_1_1/OpenRTM-aist/configure.ac	2017-08-30 02:24:59 UTC (rev 3026)
+++ branches/RELENG_1_1/OpenRTM-aist/configure.ac	2017-08-30 03:02:35 UTC (rev 3027)
@@ -1473,6 +1473,14 @@
 AC_SUBST(LDSOLIBS)
 AC_SUBST(pkgconfigdir)
 
+dnl Adding -C/-p option to header install command
+install_exists=`which install`
+if test "x$install_exists" = "x" ; then
+   AC_SUBST([INSTALL_HEADER], ['${INSTALL} -c -C -m 644'])
+else
+   AC_SUBST([INSTALL_HEADER], ['${INSTALL} -c -p -m 644'])
+fi
+      
 dnl RTM version related options
 AC_SUBST(RTM_VERSION)
 AC_SUBST(RTM_MAJOR_VERSION)

Modified: branches/RELENG_1_1/OpenRTM-aist/src/lib/coil/configure.ac
===================================================================
--- branches/RELENG_1_1/OpenRTM-aist/src/lib/coil/configure.ac	2017-08-30 02:24:59 UTC (rev 3026)
+++ branches/RELENG_1_1/OpenRTM-aist/src/lib/coil/configure.ac	2017-08-30 03:02:35 UTC (rev 3027)
@@ -445,6 +445,14 @@
 AC_SUBST(LDSOLIBS)
 AC_SUBST(pkgconfigdir)
 
+dnl Adding -C/-p option to header install command
+install_exists=`which install`
+if test "x$install_exists" = "x" ; then
+   AC_SUBST([INSTALL_HEADER], ['${INSTALL} -c -C -m 644'])
+else
+   AC_SUBST([INSTALL_HEADER], ['${INSTALL} -c -p -m 644'])
+fi
+      
 dnl RTM version related options
 AC_SUBST(COIL_VERSION)
 AC_SUBST(COIL_MAJOR_VERSION)



More information about the openrtm-commit mailing list