Ensure python scripts are installed as SCRIPTS, rather than DATA to stop rpmlint complaining

This commit is contained in:
Daniel P. Berrange 2006-07-17 11:11:22 -04:00
parent 38d4f30c56
commit f42a9ed371
3 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ bin_SCRIPTS = virt-manager
pythondir = $(pkgdatadir)
python_SOURCES = $(PACKAGE).py.in
python_DATA = $(PACKAGE).py
python_SCRIPTS = $(PACKAGE).py
libexec_SOURCES = $(PACKAGE)-launch.in
libexec_SCRIPTS = $(PACKAGE)-launch

View File

@ -1,5 +1,5 @@
pythondir = $(pkgdatadir)/virtManager
python_DATA = $(wildcard $(srcdir)/*.py)
python_SCRIPTS = $(wildcard $(srcdir)/*.py)
EXTRA_DIST = $(python_DATA)

View File

@ -1,5 +1,5 @@
pythondir = $(pkgdatadir)/vncViewer
python_DATA = $(wildcard $(srcdir)/*.py)
python_SCRIPTS = $(wildcard $(srcdir)/*.py)
EXTRA_DIST = $(python_DATA)