[Pkg-octave-commit] [octave] 08/09: Drop obsolete debian/subdirs-vars.pl.

Sébastien Villemot sebastien at debian.org
Thu Jan 4 15:14:00 UTC 2018


This is an automated email from the git hooks/post-receive script.

sebastien pushed a commit to branch master
in repository octave.

commit 6d6a84f8336625018d927e2613d2c68d6976c6a5
Author: Sébastien Villemot <sebastien at debian.org>
Date:   Thu Jan 4 15:52:49 2018 +0100

    Drop obsolete debian/subdirs-vars.pl.
    
    Gbp-Dch: Ignore
---
 debian/subdirs-vars.pl | 29 -----------------------------
 1 file changed, 29 deletions(-)

diff --git a/debian/subdirs-vars.pl b/debian/subdirs-vars.pl
deleted file mode 100755
index 62d17f2..0000000
--- a/debian/subdirs-vars.pl
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/perl -w
-
-### Manipulates the SUBDIRS and INSTALL_SUBDIRS variables. Run like this
-### subdirs-vars.pl no-doc
-### subdirs-vars.pl only-doc
-
-my $line = "";
-my $action = shift @ARGV;
-
-while (<>) {
-  $line .= $_;
-
-  ## Line continuation character ("\")
-  next if /\\$/;
-
-  if ($line =~ /^((INSTALL_|)SUBDIRS =)/) {
-    if ($action eq "no-doc") {
-      $line =~ s/doc//;
-    } else {
-      $line = "$1 doc\n";
-    }
-  }
-
-  print $line;
-
-  $line = "";
-}
-
-

-- 
Alioth's /home/groups/pkg-octave/bin/git-commit-notice on /srv/git.debian.org/git/pkg-octave/octave.git



More information about the Pkg-octave-commit mailing list