Author: lasgouttes
Date: Tue Jan 24 00:00:17 2012
New Revision: 40669
URL: http://www.lyx.org/trac/changeset/40669

Log:
reat python scripts as plain data file, since automake 1.11.2 wants to control 
where python files go. This fixes #6080 and #7990.

Modified:
   lyx-devel/trunk/lib/Makefile.am

Modified: lyx-devel/trunk/lib/Makefile.am
==============================================================================
--- lyx-devel/trunk/lib/Makefile.am     Mon Jan 23 22:22:34 2012        (r40668)
+++ lyx-devel/trunk/lib/Makefile.am     Tue Jan 24 00:00:17 2012        (r40669)
@@ -8,8 +8,9 @@
        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 @@
        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 \

Reply via email to