mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2025-01-08 15:35:16 +00:00
bf352eceda
* Makefile: Include default.mk and targets.mk from mk/ where they've been moved to. * README_maintainer: Rename utils to make throughout. * doc/Makefile: Rename utils to make throughout. * doc/org.texi: Remove reference to utils/, x11idle.c is now in contrib/scripts. * mk/make_emacs_changelog: Add mk/ to list of directories not to be reported in Emacs' ChangeLog. Also retain utils/ and re-add UTILITIES; add a comment explaining why these need to stay. * mk/default.mk: Rename utils to make throughout. Include version.mk from mk/ where it's been moved to. * mk/targets.mk: Rename utils to make throughout. * mk/server.mk: Rename utils to make throughout. Only put those files from mk/ into the archives that are needed outside the server: default.mk targets.mk version.mk and org-fixup.el. * lisp/org-compat.el: Rename utils to make throughout. * .gitignore: Rename utils to make throughout.
22 lines
644 B
Perl
Executable File
22 lines
644 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
# This command creates a version of the manual to is both GFDL and GPL
|
|
# To allow DEBIAN to include the manual in its main section.
|
|
|
|
$gpl =
|
|
'
|
|
|
|
Permission is also granted to copy, distribute and/or modify this document
|
|
under the terms of the GNU General Public License (GPL).
|
|
You should have received a copy of the GNU General Public License
|
|
along with GNU Emacs. If not, see @url{http://www.gnu.org/licenses/}.
|
|
';
|
|
|
|
open IN, "<doc/org.texi" or die "Cannot open doc/org.texi\n";
|
|
open OUT, ">doc/org_dual_license.texi" or die "Cannot open doc/org.texi\n";
|
|
|
|
while (<IN>) {
|
|
print OUT $gpl if /end quotation/;
|
|
print OUT $_;
|
|
}
|