Files
bsdports/print/libpaper/files/patch-lib-Makefile.in
2019-12-26 07:26:06 +00:00

20 lines
849 B
Plaintext

--- lib/Makefile.in.orig 2014-04-10 22:56:38.000000000 +0900
+++ lib/Makefile.in 2014-08-30 23:40:33.000000000 +0900
@@ -678,14 +678,14 @@
paperspecs.h: paperspecs Makefile
- echo ' /* This file has been automaticaly generated.' >$@
+ echo ' /* This file has been automatically generated.' >$@
echo ' Edit paperspecs to make changes to the papers specifications. */' >>$@
echo >>$@
env LANG=C LC_ALL=C awk '{ factor = 1.0; \
if ($$4 == "mm") factor = 72.0 / 25.4; \
if ($$4 == "in") factor = 72.0; \
printf(" { \"%s\", %5f, %5f },\n", \
- $$1, $$2 * factor, $$3 * factor); }' < $< >> $@
+ $$1, $$2 * factor, $$3 * factor); }' < paperspecs >> $@
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.