diff options
-rw-r--r-- | meta-oe/recipes-test/cppunit/files/0001-doc-Makefile.am-do-not-preserve-file-flags-when-copy.patch | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/meta-oe/recipes-test/cppunit/files/0001-doc-Makefile.am-do-not-preserve-file-flags-when-copy.patch b/meta-oe/recipes-test/cppunit/files/0001-doc-Makefile.am-do-not-preserve-file-flags-when-copy.patch index 6a20c1283a..441876e404 100644 --- a/meta-oe/recipes-test/cppunit/files/0001-doc-Makefile.am-do-not-preserve-file-flags-when-copy.patch +++ b/meta-oe/recipes-test/cppunit/files/0001-doc-Makefile.am-do-not-preserve-file-flags-when-copy.patch | |||
@@ -17,15 +17,12 @@ diff --git a/doc/Makefile.am b/doc/Makefile.am | |||
17 | index 8815476..3237499 100644 | 17 | index 8815476..3237499 100644 |
18 | --- a/doc/Makefile.am | 18 | --- a/doc/Makefile.am |
19 | +++ b/doc/Makefile.am | 19 | +++ b/doc/Makefile.am |
20 | @@ -22,7 +22,7 @@ htmldir += $(pkgdatadir)/html | 20 | @@ -8,7 +8,7 @@ htmldir += $(pkgdatadir)/html |
21 | html_DATA += $(static_pages) html/index.html | 21 | html_DATA += $(static_pages) html/index.html |
22 | 22 | ||
23 | install-data-hook: | 23 | install-data-hook: |
24 | - cp -pR html/* $(DESTDIR)$(htmldir) | 24 | - cp -pR html/* $(DESTDIR)$(htmldir) |
25 | + cp -R html/* $(DESTDIR)$(htmldir) | 25 | + cp -R html/* $(DESTDIR)$(htmldir) |
26 | 26 | ||
27 | # Automake's "distcheck" is sensitive to having files left over | 27 | uninstall-local: |
28 | # after "make uninstall", so we have to clean up the install hook. | 28 | rm -rf $(DESTDIR)$(htmldir) |
29 | -- | ||
30 | 2.5.0 | ||
31 | |||