diff options
author | Werner Koch <[email protected]> | 2016-09-20 17:46:04 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2016-09-20 17:46:04 +0000 |
commit | 29207bcd3bf4de7264197db6758130375b16d9bb (patch) | |
tree | cf69121bf1b58a24d48a9168d1154c099d4ad409 /lang/python | |
parent | build: Create swdb file. (diff) | |
download | gpgme-29207bcd3bf4de7264197db6758130375b16d9bb.tar.gz gpgme-29207bcd3bf4de7264197db6758130375b16d9bb.zip |
tests: Improve portability.
* lang/qt/tests/Makefile.am (clean-local): Avoid non-portable "--"
* lang/python/Makefile.am (copystamp): Use well defined cp -R instead
of cp -r.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'lang/python')
-rw-r--r-- | lang/python/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/python/Makefile.am b/lang/python/Makefile.am index 9ec9c4aa..da626d1b 100644 --- a/lang/python/Makefile.am +++ b/lang/python/Makefile.am @@ -48,8 +48,8 @@ COPY_FILES_PYME = \ # distutils are not VPATH-aware. copystamp: $(COPY_FILES) $(COPY_FILES_PYME) if test "$(srcdir)" != "$(builddir)" ; then \ - cp -r $(COPY_FILES) . ; \ - cp -r $(COPY_FILES_PYME) pyme ; \ + cp -R $(COPY_FILES) . ; \ + cp -R $(COPY_FILES_PYME) pyme ; \ fi touch $@ |