1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-06 06:30:19 +00:00
freebsd-ports/print/libpaper/files/patch-lib-Makefile.in
Hiroki Sato 06f223cab8 - Update to 1.1.24+nmu3. DL paper size specification is fixed.
- Use install-strip.
- Add LICENSE.
2014-08-30 14:56:17 +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.