The MinGW.org Windows System Libraries
修訂 | ba6bc90a4852272549e770b1d7d8ed19a0745f37 (tree) |
---|---|
時間 | 2020-05-29 05:17:26 |
作者 | Keith Marshall <keith@user...> |
Commiter | Keith Marshall |
Prepare empty dist directory when required.
@@ -1,3 +1,10 @@ | ||
1 | +2020-05-28 Keith Marshall <keith@users.osdn.me> | |
2 | + | |
3 | + Prepare empty dist directory when required. | |
4 | + | |
5 | + * Makefile.in (dist-prepare): Delete goal; move its commands... | |
6 | + (dist): ...to here; remove dependency on defective "dist-prepare". | |
7 | + | |
1 | 8 | 2020-05-27 Keith Marshall <keith@users.osdn.me> |
2 | 9 | |
3 | 10 | Fix libmingwex-n.dll dependencies; cf. Issue #40438. |
@@ -105,10 +105,8 @@ check-recursive: %: %-subdirs | ||
105 | 105 | MKDIR_P = @MKDIR_P@ |
106 | 106 | LN = @LN@ |
107 | 107 | |
108 | -dist-prepare: | |
108 | +dist: dist-subdirs dist-extra | |
109 | 109 | $(RM) -r $@; $(MKDIR_P) $@ |
110 | - | |
111 | -dist: dist-prepare dist-subdirs dist-extra | |
112 | 110 | for file in $(addsuffix /$@/*,${subdirs}); do \ |
113 | 111 | test -f $$file && $(LN) $$file $@; done |
114 | 112 |