Opened 18 years ago

Last modified 15 years ago

#9807 closed defect

Mozilla wont build — at Initial Version

Reported by: thorsten.johannvorderbrueggen@… Owned by: macports-tickets@…
Priority: Normal Milestone:
Component: ports Version: 1.2
Keywords: Cc: thorsten.johannvorderbrueggen@…
Port: mozilla

Description

Building mozilla during devhelp build!

gmake[4]: Leaving directory `/opt/local/var/db/dports/build/_opt_local_var_db_dports_sources_rsync.rsync.darwinports.org_dpupdate_dports_www_mozilla/work/mozilla/extensions/p3p/src' /opt/local/bin/perl -I../../config ../../config/preprocessor.pl -DNAMESPACE=http://www.w3.org/2000/10/18/P3Pv1 \

-DHAS_TMPL_RETENTION\ resources/content/p3p.xsl.in > p3p200010.xsl

../../config/preprocessor.pl: invalid argument to -D: HAS_TMPL_RETENTIONresources/content/p3p.xsl.in gmake[3]: * [p3p200010.xsl] Fehler 2 gmake[3]: * Datei >>p3p200010.xsl<< wird gel"oscht gmake[3]: Leaving directory `/opt/local/var/db/dports/build/_opt_local_var_db_dports_sources_rsync.rsync.darwinports.org_dpupdate_dports_www_mozilla/work/mozilla/extensions/p3p' gmake[2]: * [libs] Fehler 2 gmake[2]: Leaving directory `/opt/local/var/db/dports/build/_opt_local_var_db_dports_sources_rsync.rsync.darwinports.org_dpupdate_dports_www_mozilla/work/mozilla/extensions' gmake[1]: * [libs] Fehler 2 gmake[1]: Leaving directory `/opt/local/var/db/dports/build/_opt_local_var_db_dports_sources_rsync.rsync.darwinports.org_dpupdate_dports_www_mozilla/work/mozilla' make: * [all] Error 2


Solution: in mozilla/extension/p3p add a space in every line who has a -D*. Example:

wrong line p3p200010.xsl: resources/content/p3p.xsl.in Makefile.in

@$(RM) -f $@ $(PP) -DNAMESPACE=http://www.w3.org/2000/10/18/P3Pv1 \ -DHAS_TMPL_RETENTION\ $< > $@

corrected line p3p200010.xsl: resources/content/p3p.xsl.in Makefile.in

@$(RM) -f $@ $(PP) -DNAMESPACE=http://www.w3.org/2000/10/18/P3Pv1 \ -DHAS_TMPL_RETENTION \ $< > $@

Change History (0)

Note: See TracTickets for help on using tickets.