Bug 383099 - error in Makefile creation caused by autoconf syntax (part1), r=luser

This commit is contained in:
wr@rosenauer.org 2007-06-04 05:58:35 -07:00
parent 2f628cf5c2
commit 8fd4ade3cd
2 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ ifeq ($(OS_ARCH),Darwin)
libs::
$(NSINSTALL) -D $(DIST)/bin/crashreporter.app
rsync -a -C --exclude "*.in" $(srcdir)/macbuild/Contents $(DIST)/bin/crashreporter.app
sed -e "s/@APP_NAME@/$(MOZ_APP_DISPLAYNAME)/" $(srcdir)/macbuild/Contents/Resources/English.lproj/InfoPlist.strings.in | \
sed -e "s/%APP_NAME%/$(MOZ_APP_DISPLAYNAME)/" $(srcdir)/macbuild/Contents/Resources/English.lproj/InfoPlist.strings.in | \
iconv -f UTF-8 -t UTF-16 > $(DIST)/bin/crashreporter.app/Contents/Resources/English.lproj/InfoPlist.strings
$(NSINSTALL) -D $(DIST)/bin/crashreporter.app/Contents/MacOS
$(NSINSTALL) $(DIST)/bin/crashreporter $(DIST)/bin/crashreporter.app/Contents/MacOS

View File

@ -1,4 +1,4 @@
/* Localized versions of Info.plist keys */
CFBundleName = "@APP_NAME@ Crash Reporter";
CFBundleName = "%APP_NAME% Crash Reporter";
NSHumanReadableCopyright = "Copyright © 2007 Mozilla Foundation";