From: Jean-Marc Lasgouttes Date: Mon, 23 Jan 2012 23:00:17 +0000 (+0000) Subject: reat python scripts as plain data file, since automake 1.11.2 wants to control where... X-Git-Tag: 2.1.0beta1~2092 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=c31bf2d2aba1f71dbd67543e0d90c5eaa655a4e2;p=lyx.git reat python scripts as plain data file, since automake 1.11.2 wants to control where python files go. This fixes #6080 and #7990. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@40669 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/lib/Makefile.am b/lib/Makefile.am index 1218969838..110533d0ce 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -8,8 +8,9 @@ dist_pkgdata_DATA = CREDITS autocorrect chkconfig.ltx external_templates \ encodings layouttranslations languages symbols syntax.default \ unicodesymbols +# We use DATA now instead of PYTHON because automake 1.11.2 complains. # Note that we "chmod 755" manually this file in install-data-hook. -dist_pkgdata_PYTHON = configure.py +dist_pkgdata_DATA += configure.py dist_noinst_DATA = \ images/README \ @@ -1503,8 +1504,9 @@ dist_scripts_DATA = \ scripts/bash_completion \ scripts/lyxstangle.R \ scripts/lyxsweave.R +# We use DATA now instead of PYTHON because automake 1.11.2 complains. # Note that we "chmod 755" manually these files in install-data-hook. -dist_scripts_PYTHON = \ +dist_scripts_DATA += \ scripts/clean_dvi.py \ scripts/convertDefault.py \ scripts/csv2lyx.py \