[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
false positive result with 'make distcheck'
From: |
Guillaume Rousse |
Subject: |
false positive result with 'make distcheck' |
Date: |
Tue, 05 Sep 2006 13:33:06 +0200 |
User-agent: |
Thunderbird 1.5.0.5 (X11/20060804) |
Using the following Makefile.am, make distcheck report everything's OK.
However, the main files, rpmbuildupdate.in rand pmbuildupdate.comp.in
are obviously missing, as I forgot to list them in EXTRA_DIST.
Is this a bug, or am I missing something ?
--
Guillaume Rousse
Projet Estime, INRIA
Domaine de Voluceau
Rocquencourt - B.P. 105
78153 Le Chesnay Cedex - France
bin_SCRIPTS = rpmbuildupdate
man1_MANS = rpmbuildupdate.1
completion_SCRIPTS = rpmbuildupdate.comp
dist_sysconf_DATA = rpmbuildupdate.conf
SVNPATH = svn+ssh://svn.mandriva.com/svn/soft/rpmbuildupdate
CLEANFILES = rpmbuildupdate rpmbuildupdate.comp rpmbuildupdate.1
completiondir = $(sysconfdir)/bash_completion.d
rpmbuildupdate.1: rpmbuildupdate
pod2man $< $@
rpmbuildupdate: $(srcdir)/rpmbuildupdate.in
perl -pi -e s'|address@hidden@|$(sysconfdir)|' < $< > $@
rpmbuildupdate.comp: $(srcdir)/rpmbuildupdate.comp.in
perl -pi -e s'|address@hidden@|$(sysconfdir)|' < $< > $@
install-data-hook:
mv $(DESTDIR)/$(completiondir)/rpmbuildupdate.comp \
$(DESTDIR)/$(completiondir)/rpmbuildupdate
svntag:
svn copy -m 'new release $(VERSION)'\
$(SVNPATH)/trunk \
$(SVNPATH)/tags/release-$(VERSION)
- false positive result with 'make distcheck',
Guillaume Rousse <=
- Re: false positive result with 'make distcheck', Guillaume Rousse, 2006/09/05
- Re: false positive result with 'make distcheck', Ralf Wildenhues, 2006/09/05
- Re: false positive result with 'make distcheck', Guillaume Rousse, 2006/09/05
- Re: false positive result with 'make distcheck', Ralf Wildenhues, 2006/09/05
- Re: false positive result with 'make distcheck', Harlan Stenn, 2006/09/05
- Re: false positive result with 'make distcheck', Ralf Wildenhues, 2006/09/06
- Re: false positive result with 'make distcheck', Harlan Stenn, 2006/09/06
- Re: false positive result with 'make distcheck', Ralf Wildenhues, 2006/09/06
- Re: false positive result with 'make distcheck', Guillaume Rousse, 2006/09/07