MacVim Makefile don't make macvim-dmg depend on macvim

This makes it easier to build custom DMG files from aribitrary app
bundles. For example, this is necessary for signing an existing MacVim
app and re-bundling it to DMG. Otherwise the make command will always
override the provided app bundle.
This commit is contained in:
Yee Cheng Chin
2019-02-18 17:15:26 -08:00
parent e6ada4d1c2
commit 21b29de486
+1 -1
View File
@@ -3417,7 +3417,7 @@ DMGFILE = MacVim.dmg
macvim: $(VIMTARGET)
xcodebuild -project MacVim/MacVim.xcodeproj $(XCODEFLAGS)
macvim-dmg: macvim
macvim-dmg:
mkdir -p $(DMGDIR)
cp -a $(RELEASEDIR)/MacVim.app $(DMGDIR)/
rm -rf $(RELEASEDIR)/$(DMGFILE)