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

git-svn-id: svn://10.0.0.236/trunk@227459 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
wr%rosenauer.org 2007-06-04 12:58:40 +00:00
parent da09d71a9f
commit 16acda3bbf
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";