X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/edbd470fa6b1d1286a4500f3a8263905fbc2d11d..2eee4b0cd743865445a5023e8c10467cdc9b350e:/scripts/sedfiles.make diff --git a/scripts/sedfiles.make b/scripts/sedfiles.make index 8557a86..5b7a649 100644 --- a/scripts/sedfiles.make +++ b/scripts/sedfiles.make @@ -1,6 +1,6 @@ # # This file is part of DisOrder. -# Copyright (C) 2004, 2005, 2007 Richard Kettlewell +# Copyright (C) 2004-2008 Richard Kettlewell # # 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 @@ -25,9 +25,16 @@ $(SEDFILES) : % : %.in Makefile -e 's!pkgconfdir!${sysconfdir}/disorder!g;' \ -e 's!pkgstatedir!${localstatedir}/disorder!g;' \ -e 's!pkgdatadir!${pkgdatadir}!g;' \ + -e 's!SENDMAIL!${SENDMAIL}!g;' \ -e 's!_version_!${VERSION}!g;' \ < $< > $@.new - chmod 444 $@.new + @if test -x $<; then \ + echo chmod 555 $@.new;\ + chmod 555 $@.new;\ + else \ + echo chmod 444 $@.new;\ + chmod 444 $@.new;\ + fi mv -f $@.new $@ # Local Variables: