Merge lp:~josephjamesmills/ubuntu/quantal/dh-make/fixed-bug-1048908 into lp:ubuntu/quantal/dh-make

Proposed by Joseph Mills
Status: Merged
Merged at revision: 18
Proposed branch: lp:~josephjamesmills/ubuntu/quantal/dh-make/fixed-bug-1048908
Merge into: lp:ubuntu/quantal/dh-make
Diff against target: 33 lines (+14/-1)
2 files modified
debian/changelog (+13/-0)
dh_make (+1/-1)
To merge this branch: bzr merge lp:~josephjamesmills/ubuntu/quantal/dh-make/fixed-bug-1048908
Reviewer Review Type Date Requested Status
Ubuntu branches Pending
Review via email: mp+123855@code.launchpad.net

Description of the change

added Getopt::Long::Configure ('no_ignore_case'); to line 14
to take care of bug 1048908

To post a comment you must log in.
Revision history for this message
Joseph Mills (josephjamesmills) wrote :

Not done fixing bug number

19. By Joseph Mills

Fixing bug Number (LP: #1048908)

20. By Joseph Mills

fixed the bug number and explaining more.
I was able to get help on IRC on the motu
channel for this one and fix this bug buy
adding
Getopt::Long::Configure ('no_ignore_case');
turns out that dh-make was getting confused
by CAPS or no caps.
example:
    dh_make -c gpl3 *.tar.gz
will error out but
    dch_make --copyright
would not so adding no_ignore_case fixs this.

Revision history for this message
Joseph Mills (josephjamesmills) wrote :

Done

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'debian/changelog'
2--- debian/changelog 2012-07-13 21:26:38 +0000
3+++ debian/changelog 2012-09-11 23:02:17 +0000
4@@ -1,3 +1,16 @@
5+dh-make (0.61ubuntu2) quantal; urgency=low
6+
7+ * dh_make: line 14 added Getopt::Long::Configure ('no_ignore_case');
8+ (LP: #1048908)
9+ * fixed the bug number and explaining more.
10+ I was able to get help on IRC on the motu channel for this one and fix
11+ this bug buy adding Getopt::Long::Configure ('no_ignore_case');
12+ turns out that dh-make was getting confused by CAPS or no caps.
13+ example dh_make -c gpl3 *.tar.gz will error out but dch_make
14+ --copyright would not so adding no_ignore_case fixs this.
15+
16+ -- Joseph Mills <josephjamesmills@gmail.com> Tue, 11 Sep 2012 18:55:17 -0400
17+
18 dh-make (0.61) unstable; urgency=low
19
20 * Update to standards version 3.9.3
21
22=== modified file 'dh_make'
23--- dh_make 2012-07-13 21:26:38 +0000
24+++ dh_make 2012-09-11 23:02:17 +0000
25@@ -12,7 +12,7 @@
26
27 # Turns off autoabbrev to avoid mistakes with cdbs and copyright options.
28 $Getopt::Long::autoabbrev = 0;
29-
30+Getopt::Long::Configure ('no_ignore_case');
31 # Some important parameters
32 our $DHLIB="/usr/share/debhelper/dh_make";
33 our $POLICY_VERSION="3.9.3";

Subscribers

People subscribed via source and target branches

to all changes: