Don't use underscores for filenames in infodir

This commit is contained in:
Ozan Çağlayan
2010-03-09 11:49:17 +00:00
parent 673f9ca873
commit df45476f7f
2 changed files with 8 additions and 4 deletions
+4
View File
@@ -1,3 +1,7 @@
2010-03-09 Ozan Çağlayan <ozan@pardus.org.tr>
* pisi/constants.py: Don't use underscores to be compatible with other
file names in infodir.
2010-03-08 Ozan Çağlayan <ozan@pardus.org.tr>
* pisi/actionsapi/cmaketools.py: Those given parameters are nonsense
and noop. Just give DESTDIR to install() for correct installation into
+4 -4
View File
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2005 - 2007, TUBITAK/UEKAE
# Copyright (C) 2005 - 2010, TUBITAK/UEKAE
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
@@ -87,11 +87,11 @@ class Constants:
self.__c.sandbox_conf = "/etc/pisi/sandbox.conf"
self.__c.blacklist = "/etc/pisi/blacklist"
self.__c.config_pending = "configpending"
self.__c.needs_restart = "needs_restart"
self.__c.needs_reboot = "needs_reboot"
self.__c.needs_restart = "needsrestart"
self.__c.needs_reboot = "needsreboot"
self.__c.files_db = "files.db"
self.__c.repos = "repos"
#file/directory permissions
self.__c.umask = 0022