diff options
author | Ludovic Courtès | 2012-05-22 21:44:26 +0200 |
---|---|---|
committer | Ludovic Courtès | 2012-05-22 21:44:26 +0200 |
commit | 7df70cb61080a0ded0b035e5cdec57bf18866b26 (patch) | |
tree | b5958e5017e4b0e1690fb3e68f77848b017b7d0a | |
parent | 27e83da3ec4ee676af51e23104621f0eb1f5f8cb (diff) | |
download | skribilo-7df70cb61080a0ded0b035e5cdec57bf18866b26.tar.gz skribilo-7df70cb61080a0ded0b035e5cdec57bf18866b26.tar.lz skribilo-7df70cb61080a0ded0b035e5cdec57bf18866b26.zip |
build: Fix `.in.scm' rule for out-of-tree builds.
* src/guile/Makefile.am: Switch to GPLv3+.
(.in.scm): Mkdir the dirname of $@.
-rw-r--r-- | src/guile/Makefile.am | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/src/guile/Makefile.am b/src/guile/Makefile.am index c853b50..eb44261 100644 --- a/src/guile/Makefile.am +++ b/src/guile/Makefile.am @@ -1,19 +1,19 @@ -# Copyright 2005, 2006, 2007, 2008, 2009, 2010, 2012 Ludovic Courtès <ludo@gnu.org> +# Copyright 2005, 2006, 2007, 2008, 2009, 2010, 2012 Ludovic Courtès <ludo@gnu.org> # -# 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 Software Foundation; either version 2 of the License, or -# (at your option) any later version. +# This file is part of Skribilo. # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# Skribilo is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 3 of the License, or (at +# your option) any later version. # -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, -# USA. +# Skribilo is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser +# General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. moduledir = $(guilemoduledir) @@ -98,6 +98,7 @@ BUILT_SOURCES = \ skribilo/utils/images.scm .in.scm: + $(MKDIR_P) "`dirname $@`" $(substitute) "$^" > "$@.tmp" && \ mv "$@.tmp" "$@" |