9 lines
140 B
Text
9 lines
140 B
Text
|
|
#!/usr/bin/make -f
|
||
|
|
%:
|
||
|
|
ifneq ($(shell dh -l | grep -xF translations),)
|
||
|
|
dh $@ --with python2,translations
|
||
|
|
else
|
||
|
|
dh $@ --with python2
|
||
|
|
endif
|
||
|
|
|
||
|
|
|