Erik Grinaker is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

erikg / Revelation

Revelation is a password manager for the GNOME desktop, released under the GNU GPL license. It stores all your accounts and passwords in a single, secure place, and gives you access to it through a user-friendly graphical interface.

Clone this repository (size: 2.1 MB): HTTPS / SSH
hg clone https://bitbucket.org/erikg/revelation
hg clone ssh://hg@bitbucket.org/erikg/revelation

Revelation / src / lib / Makefile.am

commit
cdaef80a065f
parent
1e8d1627dc15
branch
default
tags
revelation-0.4.9

don't include built config.py during make dist

1
1c96b7e48232
## Process this file with automake to produce Makefile.in
2
1c96b7e48232
#
3
1c96b7e48232
# src/lib/Makefile.am
4
1c96b7e48232
#
5
1c96b7e48232
# $Id$
6
1c96b7e48232
#
7
1c96b7e48232
8
b0d11bf9eca4
SUBDIRS				= datahandler
9
f9e0bdbb21fc
10
89256f7e6edd
librevelationdir		= $(pyexecdir)/revelation
11
89256f7e6edd
librevelation_PYTHON		= \
12
a207757f8451
	__init__.py \
13
a207757f8451
	data.py \
14
a207757f8451
	dialog.py \
15
a207757f8451
	entry.py \
16
a207757f8451
	io.py \
17
c9d89f3ff91d
	ui.py \
18
704e07bb5692
	util.py
19
a207757f8451
20
89256f7e6edd
nodist_librevelation_PYTHON	= config.py
21
89256f7e6edd
CLEANFILES			= config.py
22
89256f7e6edd
EXTRA_DIST			= config.py.in
23
89256f7e6edd
24
6b750a024d18
25
1c96b7e48232
config.py: config.py.in
26
a207757f8451
	sed \
27
a207757f8451
		-e "s|\@GCONFTOOL\@|$(GCONFTOOL)|" \
28
f7e311e828af
		-e "s|\@PACKAGE\@|$(PACKAGE)|" \
29
a207757f8451
		-e "s|\@VERSION\@|$(VERSION)|" \
30
3dcf95408d8d
		-e "s|\@datadir\@|$(datadir)|" \
31
3dcf95408d8d
		-e "s|\@pkgdatadir\@|$(pkgdatadir)|" \
32
3dcf95408d8d
		-e "s|\@pkgschemadir\@|@GCONF_SCHEMA_FILE_DIR@|" \
33
cc7adb3529e8
		config.py.in > config.py
34
a207757f8451