diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2011-04-03 19:48:09 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2011-04-03 19:48:09 +0200 |
commit | e36d7343ffed4be56b0bbc278aee26671c9990a5 (patch) | |
tree | 5b7d7f09b446636e03f81c519cb696eb531864a3 /decoders | |
parent | a0d4825744bd5bc2cd18a51e8339faf11b9d87c4 (diff) | |
download | libsigrokdecode-e36d7343ffed4be56b0bbc278aee26671c9990a5.tar.gz libsigrokdecode-e36d7343ffed4be56b0bbc278aee26671c9990a5.zip |
Decoders: s/dist_pkgdata_SCRIPTS/dist_pkgdata_DATA/.
The .py decoder files are not technically scripts and should not be
executable and can not be invoked on the command line
(via ./foo.py --help or similar).
Diffstat (limited to 'decoders')
-rw-r--r-- | decoders/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/Makefile.am b/decoders/Makefile.am index f4c72e6..14622ed 100644 --- a/decoders/Makefile.am +++ b/decoders/Makefile.am @@ -20,7 +20,7 @@ pkgdatadir = $(DECODERS_DIR) -dist_pkgdata_SCRIPTS = i2c.py nunchuk.py transitioncounter.py +dist_pkgdata_DATA = i2c.py nunchuk.py transitioncounter.py CLEANFILES = *.pyc |