diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-03-18 11:50:38 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-03-18 11:50:38 +0000 |
commit | a68d2827d36597f96c7dac2b6e0ae381aecbc24c (patch) | |
tree | cbc29822393959d2cb1fa583902329503e9ddcd6 /graphics/gphoto2 | |
parent | 449a928eea07416fb2c4e7ce5f02faae8c31155d (diff) | |
download | ports-a68d2827d36597f96c7dac2b6e0ae381aecbc24c.tar.gz ports-a68d2827d36597f96c7dac2b6e0ae381aecbc24c.zip |
Iconv cleanup, stage 2b: remove regex hacks that change iconv.h to giconv.h and
-liconv to -lgiconv.
Notes
Notes:
svn path=/head/; revision=56294
Diffstat (limited to 'graphics/gphoto2')
-rw-r--r-- | graphics/gphoto2/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/graphics/gphoto2/Makefile b/graphics/gphoto2/Makefile index 1382ddd74522..1149e5e5f552 100644 --- a/graphics/gphoto2/Makefile +++ b/graphics/gphoto2/Makefile @@ -35,9 +35,7 @@ INSTALL_CMD= /usr/bin/install -c -o ${BINOWN} -g ${BINGRP} post-patch: .for file in configure libgphoto2_port/configure - @${PERL} -pi -e 's|<iconv.h>|<giconv.h>|g ; \ - s|-liconv|-lgiconv|g ; \ - s|-g -Wall||g' ${WRKSRC}/${file} + @${PERL} -pi -e 's|-g -Wall||g' ${WRKSRC}/${file} .endfor @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ 's|\@INSTALL\@|${INSTALL_CMD}|g ; \ |