Skip to content

Commit 3838053

Browse files
committed
Add "check" target for localizations.
1 parent 881de11 commit 3838053

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

cups/Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,12 +350,20 @@ strings:
350350
stringsutil -f strings/$$file -c merge base.strings; \
351351
done
352352

353+
.PHONY: stringsh
353354
stringsh:
354355
echo Generating localization headers...
355356
for file in $(STRINGS); do \
356357
stringsutil -f strings/$$file export strings/`basename $$file .strings`_strings.h; \
357358
done
358359

360+
.PHONY: stringscheck
361+
stringscheck:
362+
echo Checking localization headers...
363+
for file in $(STRINGS); do \
364+
stringsutil -f base.strings report strings/$$file; \
365+
done
366+
359367

360368
#
361369
# libcups.so.3 / libcups3.so.3

0 commit comments

Comments
 (0)