Description: Do not byte compile .el files
 debian byte compiles at package install time but that cannot be relied
 upon in other systems.
Forwarded: not-needed
Author: Артём Попов <artfwo@gmail.com>
Last-Update: 2011-06-11
--- a/common/SConstruct
+++ b/common/SConstruct
@@ -1273,10 +1273,10 @@
                 'sed \'s,@PKG_DATA_DIR@,%s,g\' < $SOURCE > $TARGET' %
                 pkg_data_dir(FINAL_PREFIX))
     el_files = glob.glob('../editors/scel/el/*.el') + ['../editors/scel/el/sclang-vars.el']
-    elc_files = map(lambda f: os.path.splitext(f)[0] + '.elc', el_files)
+    elc_files = [] #map(lambda f: os.path.splitext(f)[0] + '.elc', el_files)
     elisp_dir = os.path.join(INSTALL_PREFIX, 'share', 'emacs', 'site-lisp')
-    env.Command(elc_files, el_files,
-                'emacs -batch --eval "(add-to-list \'load-path (expand-file-name \\"../editors/scel/el/\\"))" -f batch-byte-compile $SOURCES')
+    #env.Command(elc_files, el_files,
+    #            'emacs -batch --eval "(add-to-list \'load-path (expand-file-name \\"../editors/scel/el/\\"))" -f batch-byte-compile $SOURCES')
     env.Alias('install-elisp', env.Install(elisp_dir, el_files + elc_files))
     installEnv.Append(DATA = 'install-elisp')
 
