Source: norwegian
Version: 2.2-3
Severity: normal
Tags: patch
Hi,
You have both:
override_dh_auto_build: debian/po/en.po
chmod +x scripts/thes_to_dat
dh_auto_build
override_dh_build:
$(MAKE) TH_NB1= TH_NN1= AWK=gawk
… in your debian/rules. However, the `override_dh_build` is never
called. Did you mean:
override_dh_auto_build: debian/po/en.po
chmod +x scripts/thes_to_dat
dh_auto_build -- TH_NB1= TH_NN1= AWK=gawk
instead? (Patch attached.)
Regards,
--
,''`.
: :' : Chris Lamb
`. `'` [email protected] / chris-lamb.co.uk
`-
diff --git a/debian/rules b/debian/rules
index 99cf4a4..0e4fb2d 100755
--- a/debian/rules
+++ b/debian/rules
@@ -5,10 +5,7 @@
override_dh_auto_build: debian/po/en.po
chmod +x scripts/thes_to_dat
- dh_auto_build
-
-override_dh_build:
- $(MAKE) TH_NB1= TH_NN1= AWK=gawk
+ dh_auto_build -- TH_NB1= TH_NN1= AWK=gawk
override_dh_install:
cd debian/tmp && \
diff --git a/scripts/thes_to_dat b/scripts/thes_to_dat
old mode 100644
new mode 100755