diff options
author | P. J. McDermott <pj@pehjota.net> | 2015-11-30 23:21:50 (EST) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2015-11-30 23:21:50 (EST) |
commit | 880d6c569bb230db957e0d2b3dcf736a38c831aa (patch) | |
tree | 4b9a3479ac9f1bb11a70aed92f8371990b5b7bb1 | |
parent | 84f3cccfb57fc8270b2ae14f0adf2c2ff24cc69b (diff) |
Makefile.am: s/_SCRIPTS/_sources/ in list macros
-rw-r--r-- | Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index 83c0127..f445920 100644 --- a/Makefile.am +++ b/Makefile.am @@ -77,10 +77,10 @@ EXTRA_DIST = \ SUFFIXES = .sh .sm .1in .1 .8in .8 .ms -cmds = $$(printf '%s ' $(pkgdatacmd_SCRIPTS) | \ - sed -e 's|[^ ]*/\([^ ]*\)\.sm |\1 |g') -profiles = $$(printf '%s ' $(pkgdataprofile_SCRIPTS) | \ - sed -e 's|[^ ]*/\([^ ]*\)\.sm |\1 |g') +cmds = $$(printf '%s ' $(pkgdatacmd_sources) | \ + sed -e 's|[^ ]*/\([^ ]*\)\.sh |\1 |g') +profiles = $$(printf '%s ' $(pkgdataprofile_sources) | \ + sed -e 's|[^ ]*/\([^ ]*\)\.sh |\1 |g') textdomain = $$(printf '%s\n' '$(PACKAGE)' | sed -e 's|-|_|g') do_subst = sed \ -e 's|[@]PACKAGE_NAME[@]|$(PACKAGE_NAME)|g' \ |