mirror of https://github.com/MidnightCommander/mc
Merge branch '1437_install_scripts'
* 1437_install_scripts: Ticket #1437: install mceditor scripts as scripts not as data files.
This commit is contained in:
commit
b4ba1504d7
|
@ -13,9 +13,7 @@ pkgdata_DATA += mc.charsets
|
|||
endif
|
||||
|
||||
LIBFILES_CONST = \
|
||||
mcedit.menu \
|
||||
edit.indent.rc \
|
||||
edit.spell.rc \
|
||||
mcedit.menu \
|
||||
filehighlight.ini \
|
||||
mc.keymap \
|
||||
mc.keymap.default \
|
||||
|
@ -23,6 +21,10 @@ LIBFILES_CONST = \
|
|||
mc.menu \
|
||||
mc.menu.sr
|
||||
|
||||
LIBFILES_SCRIPT = \
|
||||
edit.indent.rc \
|
||||
edit.spell.rc
|
||||
|
||||
CLEANFILES = $(SCRIPTS_OUT)
|
||||
|
||||
cfgdir = $(sysconfdir)/@PACKAGE@
|
||||
|
@ -30,9 +32,13 @@ cfg_DATA = \
|
|||
$(LIBFILES_CONST) \
|
||||
$(LIBFILES_OUT)
|
||||
|
||||
cfg_SCRIPTS = \
|
||||
$(LIBFILES_SCRIPT)
|
||||
|
||||
# Files processed by configure don't need to be here
|
||||
EXTRA_DIST = \
|
||||
$(LIBFILES_CONST) \
|
||||
$(LIBFILES_SCRIPT) \
|
||||
$(SCRIPTS_IN) \
|
||||
$(noinst_DATA) \
|
||||
$(pkgdata_DATA)
|
||||
|
|
Loading…
Reference in New Issue