* install the config file in /etc/rpmlint

git-svn-id: svn+ssh://rpmlint.zarb.org/home/projects/rpmlint/svn/trunk@45 9bc8b190-ac0f-0410-8968-dc7d1f502856
This commit is contained in:
Frédéric Lepied 1999-10-16 11:10:52 +00:00
parent 5352c35003
commit e893391cc1
1 changed files with 6 additions and 3 deletions

View File

@ -9,7 +9,9 @@
BINDIR=/usr/bin
LIBDIR=/usr/share/rpmlint
FILES= rpmlint *.py INSTALL README COPYING ChangeLog Makefile
ETCDIR=/etc/rpmlint
FILES= rpmlint *.py INSTALL README COPYING ChangeLog Makefile config
all:
python -O rpmlint.py -C . /dev/null
@ -18,9 +20,10 @@ clean:
rm -f *~ *.pyc *.pyo
install:
-mkdir -p $(DESTDIR)$(LIBDIR) $(DESTDIR)$(BINDIR)
-mkdir -p $(DESTDIR)$(LIBDIR) $(DESTDIR)$(BINDIR) $(DESTDIR)$(ETCDIR)
cp -p rpmlint.py *.pyo $(DESTDIR)$(LIBDIR)
cp rpmlint $(DESTDIR)$(BINDIR)
cp -p rpmlint $(DESTDIR)$(BINDIR)
cp -p config $(DESTDIR)$(ETCDIR)
dist:
VERSION=`python rpmlint.py -V|sed -e 's/rpmlint version //' -e 's/ Copyright (C) 1999 Frederic Lepied//'`; \