summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Raiskup <praiskup@redhat.com>2014-12-01 16:07:01 +0100
committerPavel Raiskup <praiskup@redhat.com>2014-12-01 16:07:01 +0100
commit55b4af5c8471f494316c6a3739bb409bf099fe2f (patch)
tree2f73e1e8477f506fda14a6ca49b94d0f27816942
parent0fbb585f1f7c23fc7256b305845c83198c6992ef (diff)
downloadpostgresql-setup-55b4af5c8471f494316c6a3739bb409bf099fe2f.tar.gz
postgresql-setup-55b4af5c8471f494316c6a3739bb409bf099fe2f.tar.xz
postgresql-setup-55b4af5c8471f494316c6a3739bb409bf099fe2f.zip
configury: remove redundant nodist_* prefix
.. from targets which are not distributed anyway. Thanks jmlich to forcing me to catch that mistake. * Makefile.am: Remove all nodist_ prefixes.
-rw-r--r--Makefile.am16
1 files changed, 8 insertions, 8 deletions
diff --git a/Makefile.am b/Makefile.am
index 11cd490..32617a5 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -11,16 +11,16 @@ userunitsdir = /etc/systemd/system
if WANT_SYSVINIT
initscriptsdir = $(sysconfdir)/rc.d/init.d
-nodist_initscripts_DATA = postgresql$(DISTSUFF)
+initscripts_DATA = postgresql$(DISTSUFF)
else
systemdunitsdir = $(prefix)/lib/systemd/system
-nodist_systemdunits_DATA = postgresql$(DISTSUFF).service postgresql$(DISTSUFF)@.service
+systemdunits_DATA = postgresql$(DISTSUFF).service postgresql$(DISTSUFF)@.service
systemdlegacyscriptsdir = $(prefix)/libexec/initscripts/legacy-actions/postgresql$(DISTSUFF)
-nodist_systemdlegacyscripts_DATA = initdb upgrade
+systemdlegacyscripts_DATA = initdb upgrade
endif
-nodist_doc_DATA = $(README_DIST_BASENAME)
+doc_DATA = $(README_DIST_BASENAME)
noinst_DATA = $(TEST_GEN_FILES_LIST)
@@ -64,11 +64,11 @@ EXTRA_DIST = $(srcdir)/*.in
GENERATED_FILES = $(bin_SCRIPTS) \
$(libexec_SCRIPTS) \
- $(nodist_doc_DATA) \
+ $(doc_DATA) \
$(pkgsysconf_DATA) \
- $(nodist_systemdunits_DATA) \
- $(nodist_initscripts_DATA) \
- $(nodist_systemdlegacyscripts_DATA)
+ $(systemdunits_DATA) \
+ $(initscripts_DATA) \
+ $(systemdlegacyscripts_DATA)
CLEANFILES = $(GENERATED_FILES) $(TEST_GEN_FILES_LIST)