patch-conf_Makefile 812 B

123456789101112131415161718
  1. --- cups-1.4.2.orig/conf/Makefile 2009-09-22 23:53:31.000000000 +0200
  2. +++ cups-1.4.2/conf/Makefile 2009-11-19 22:02:20.000000000 +0100
  3. @@ -72,12 +72,12 @@ install: all install-data install-header
  4. install-data:
  5. for file in $(KEEP); do \
  6. if test -r $(SERVERROOT)/$$file ; then \
  7. - $(INSTALL_CONFIG) -g $(CUPS_GROUP) $$file $(SERVERROOT)/$$file.N ; \
  8. + $(INSTALL_CONFIG) $$file $(SERVERROOT)/$$file.N ; \
  9. else \
  10. - $(INSTALL_CONFIG) -g $(CUPS_GROUP) $$file $(SERVERROOT) ; \
  11. + $(INSTALL_CONFIG) $$file $(SERVERROOT) ; \
  12. fi ; \
  13. done
  14. - $(INSTALL_CONFIG) -g $(CUPS_GROUP) cupsd.conf $(SERVERROOT)/cupsd.conf.default
  15. + $(INSTALL_CONFIG) cupsd.conf $(SERVERROOT)/cupsd.conf.default
  16. $(INSTALL_DIR) -m 755 $(DATADIR)/mime
  17. for file in $(REPLACE); do \
  18. if test -r $(DATADIR)/mime/$$file ; then \