Search
j0ke.net Open Build Service
>
Projects
>
server:monitoring
>
rancid-stable
> rancid-etc-makefile.diff
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File rancid-etc-makefile.diff of Package rancid-stable (Revision 6)
Currently displaying revision
6
,
show latest
--- etc/Makefile.in.orig 2008-02-20 22:44:22.000000000 +0100 +++ etc/Makefile.in 2008-02-20 22:45:50.000000000 +0100 @@ -348,23 +348,23 @@ install-data-local: all @if test "$(DO_CONF_INSTALL)" = "yes"; then \ - if test -f $(sysconfdir)/rancid.conf ; then \ + if test -f $(DESTDIR)$(sysconfdir)/rancid.conf ; then \ echo ""; \ - echo "WARNING: *** $(sysconfdir)/rancid.conf exists. See "; \ - echo " *** $(pkgdatadir)/rancid.conf.sample for new"; \ + echo "WARNING: *** $(DESTDIR)$(sysconfdir)/rancid.conf exists. See "; \ + echo " *** $(DESTDIR)$(pkgdatadir)/rancid.conf.sample for new"; \ echo " *** examples."; \ echo ""; \ else \ - $(INSTALL_DATA) rancid.conf.sample $(sysconfdir)/rancid.conf; \ + $(INSTALL_DATA) rancid.conf.sample $(DESTDIR)$(sysconfdir)/rancid.conf; \ fi; \ - if test -f $(sysconfdir)/lg.conf ; then \ + if test -f $(DESTDIR)$(sysconfdir)/lg.conf ; then \ echo ""; \ - echo "WARNING: *** $(sysconfdir)/lg.conf exists. See "; \ - echo " *** $(pkgdatadir)/lg.conf.sample for new"; \ + echo "WARNING: *** $(DESTDIR)$(sysconfdir)/lg.conf exists. See "; \ + echo " *** $(DESTDIR)$(pkgdatadir)/lg.conf.sample for new"; \ echo " *** examples."; \ echo ""; \ else \ - $(INSTALL_DATA) lg.conf.sample $(sysconfdir)/lg.conf; \ + $(INSTALL_DATA) lg.conf.sample $(DESTDIR)$(sysconfdir)/lg.conf; \ fi; \ fi --- etc/Makefile.am.orig 2008-02-20 22:44:17.000000000 +0100 +++ etc/Makefile.am 2008-02-20 22:45:03.000000000 +0100 @@ -34,23 +34,23 @@ install-data-local: all @if test "$(DO_CONF_INSTALL)" = "yes"; then \ - if test -f $(sysconfdir)/rancid.conf ; then \ + if test -f $(DESTDIR)$(sysconfdir)/rancid.conf ; then \ echo ""; \ - echo "WARNING: *** $(sysconfdir)/rancid.conf exists. See "; \ - echo " *** $(pkgdatadir)/rancid.conf.sample for new"; \ + echo "WARNING: *** $(DESTDIR)$(sysconfdir)/rancid.conf exists. See "; \ + echo " *** $(DESTDIR)$(pkgdatadir)/rancid.conf.sample for new"; \ echo " *** examples."; \ echo ""; \ else \ - $(INSTALL_DATA) rancid.conf.sample $(sysconfdir)/rancid.conf; \ + $(INSTALL_DATA) rancid.conf.sample $(DESTDIR)$(sysconfdir)/rancid.conf; \ fi; \ - if test -f $(sysconfdir)/lg.conf ; then \ + if test -f $(DESTDIR)$(sysconfdir)/lg.conf ; then \ echo ""; \ - echo "WARNING: *** $(sysconfdir)/lg.conf exists. See "; \ - echo " *** $(pkgdatadir)/lg.conf.sample for new"; \ + echo "WARNING: *** $(DESTDIR)$(sysconfdir)/lg.conf exists. See "; \ + echo " *** $(DESTDIR)$(pkgdatadir)/lg.conf.sample for new"; \ echo " *** examples."; \ echo ""; \ else \ - $(INSTALL_DATA) lg.conf.sample $(sysconfdir)/lg.conf; \ + $(INSTALL_DATA) lg.conf.sample $(DESTDIR)$(sysconfdir)/lg.conf; \ fi; \ fi