On Jan 3, 2008, at 06:03, [EMAIL PROTECTED] wrote:

+platform darwin 9 {
+    post-patch {
+ reinplace "s| -export-symbols-regex.*||g" ${worksrcpath}/ Makefile.am + reinplace "s| -export-symbols-regex.*||g" ${worksrcpath}/ Makefile.in + reinplace "s| -export-symbols-regex.*||g" ${worksrcpath}/ gtk/Makefile.am + reinplace "s| -export-symbols-regex.*||g" ${worksrcpath}/ gtk/Makefile.in
+    }
+}


reinplace does accept multiple files to patch, so you could just do:

        reinplace "s| -export-symbols-regex.*||g"
                ${worksrcpath}/Makefile.am \
                ${worksrcpath}/Makefile.in \
                ${worksrcpath}/gtk/Makefile.am \
                ${worksrcpath}/gtk/Makefile.in



_______________________________________________
macports-dev mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo/macports-dev

Reply via email to