patch-Makefile_in 1.7 KB

123456789101112131415161718192021222324252627282930313233
  1. hiding it won't help, we install as non-root so no chown possible
  2. --- proftpd-1.3.3.orig/Makefile.in 2009-12-16 00:24:42.000000000 +0100
  3. +++ proftpd-1.3.3/Makefile.in 2010-05-30 12:47:41.187500000 +0200
  4. @@ -79,7 +79,6 @@ check: proftpd$(EXEEXT)
  5. $(DESTDIR)$(localedir) $(DESTDIR)$(includedir) $(DESTDIR)$(includedir)/proftpd $(DESTDIR)$(libdir) $(DESTDIR)$(pkgconfigdir) $(DESTDIR)$(libdir)/proftpd $(DESTDIR)$(libexecdir) $(DESTDIR)$(localstatedir) $(DESTDIR)$(sysconfdir) $(DESTDIR)$(bindir) $(DESTDIR)$(sbindir) $(DESTDIR)$(mandir) $(DESTDIR)$(mandir)/man1 $(DESTDIR)$(mandir)/man5 $(DESTDIR)$(mandir)/man8:
  6. @if [ ! -d $@ ]; then \
  7. mkdir -p $@; \
  8. - chown $(INSTALL_USER):$(INSTALL_GROUP) $@; \
  9. chmod 0755 $@; \
  10. fi
  11. @@ -89,7 +88,6 @@ install-proftpd: proftpd $(DESTDIR)$(inc
  12. rm -f $(DESTDIR)$(sbindir)/in.proftpd ; \
  13. fi
  14. ln -s proftpd $(DESTDIR)$(sbindir)/in.proftpd
  15. - -chown -h $(INSTALL_USER):$(INSTALL_GROUP) $(DESTDIR)$(sbindir)/in.proftpd
  16. install-libs: $(DESTDIR)$(libdir)/proftpd
  17. cd lib/ && $(MAKE) install
  18. @@ -125,11 +123,11 @@ install-utils: $(DESTDIR)$(sbindir) $(DE
  19. $(INSTALL_SBIN) ftpshut $(DESTDIR)$(sbindir)/ftpshut
  20. $(INSTALL_BIN) ftptop $(DESTDIR)$(bindir)/ftptop
  21. $(INSTALL_BIN) ftpwho $(DESTDIR)$(bindir)/ftpwho
  22. - $(INSTALL) -o $(INSTALL_USER) -g $(INSTALL_GROUP) -m 0755 src/prxs $(DESTDIR)$(bindir)/prxs
  23. + $(INSTALL) -m 0755 src/prxs $(DESTDIR)$(bindir)/prxs
  24. install-conf: $(DESTDIR)$(sysconfdir)
  25. if [ ! -f $(DESTDIR)$(sysconfdir)/proftpd.conf ] ; then \
  26. - $(INSTALL) -o $(INSTALL_USER) -g $(INSTALL_GROUP) -m 0644 \
  27. + $(INSTALL) -m 0644 \
  28. $(top_srcdir)/sample-configurations/basic.conf \
  29. $(DESTDIR)$(sysconfdir)/proftpd.conf ; \
  30. fi