Normalize whitespace in mac_bundles.bkl file

No real changes, just remove hard TABs and trailing spaces.
This commit is contained in:
Vadim Zeitlin 2021-08-15 16:11:21 +02:00
parent 77ba012141
commit 64de37cf9d

View File

@ -5,15 +5,15 @@
<!-- <!--
Support for application bundles, for wxWidgets samples. Support for application bundles, for wxWidgets samples.
--> -->
<!-- <!--
Nasty hack: use $(srcdir) to obtain usable CFBundleIdentifier suffix; Nasty hack: use $(srcdir) to obtain usable CFBundleIdentifier suffix;
converts $(srcdir) like "../../samples/minimal" to "samples.minimal". converts $(srcdir) like "../../samples/minimal" to "samples.minimal".
--> -->
<set var="BUNDLE_IDENTIFIER"> <set var="BUNDLE_IDENTIFIER">
`echo $(DOLLAR)(srcdir) | sed -e 's,\.\./,,g' | sed -e 's,/,.,g'` `echo $(DOLLAR)(srcdir) | sed -e 's,\.\./,,g' | sed -e 's,/,.,g'`
</set> </set>
<set var="BUNDLE_PLIST" overwrite="0"> <set var="BUNDLE_PLIST" overwrite="0">
$(TOP_SRCDIR)src/osx/carbon/Info.plist.in $(TOP_SRCDIR)src/osx/carbon/Info.plist.in
</set> </set>
@ -67,7 +67,7 @@
<!-- copy the application icon: --> <!-- copy the application icon: -->
cp -f $(BUNDLE_ICON) $(BUNDLE)/Resources/wxmac.icns cp -f $(BUNDLE_ICON) $(BUNDLE)/Resources/wxmac.icns
</command> </command>
<if cond="BUNDLE_RESOURCES!=''"> <if cond="BUNDLE_RESOURCES!=''">
<command> <command>
<!-- copy all other bundle resources: --> <!-- copy all other bundle resources: -->
@ -84,9 +84,9 @@
cp -f $(BUNDLE_FONT_RESOURCES) $(BUNDLE)/Resources/Fonts cp -f $(BUNDLE_FONT_RESOURCES) $(BUNDLE)/Resources/Fonts
</command> </command>
</if> </if>
</modify-target> </modify-target>
<!-- add pseudo target id_bundle: --> <!-- add pseudo target id_bundle: -->
<add-target target="$(id)_bundle" type="phony" <add-target target="$(id)_bundle" type="phony"
cond="target and PLATFORM_MACOSX=='1'"/> cond="target and PLATFORM_MACOSX=='1'"/>
@ -99,7 +99,7 @@
<modify-target target="clean"> <modify-target target="clean">
<command>rm -rf $(id).app</command> <command>rm -rf $(id).app</command>
</modify-target> </modify-target>
</define-tag> </define-tag>
</makefile> </makefile>