summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2012-12-14 00:02:30 +0100
committerBastien Guerry <bzg@altern.org>2012-12-14 00:02:30 +0100
commitb8662049e717f96152126ae097f969d387ce4cd9 (patch)
tree4cddd884bb1b1f253c3e24a36b52b18844f24f52
parent6202df567c09b5dda09d5496ba1249e4ec819748 (diff)
parentc4bf1eeed4cae772d4893a6ecce7c94f5c3c24e4 (diff)
downloadorg-mode-b8662049e717f96152126ae097f969d387ce4cd9.tar.gz
Merge branch 'maint'
-rwxr-xr-xmk/gplmanual.pl21
1 files changed, 0 insertions, 21 deletions
diff --git a/mk/gplmanual.pl b/mk/gplmanual.pl
deleted file mode 100755
index d7171a5..0000000
--- a/mk/gplmanual.pl
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/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 $_;
- }