[ros-kernel] 'make install' doesn't copy freetype.dll

Sebastian Schmidt yath at yath.eu.org
Sun Dec 7 15:34:11 CET 2003


Hi Filip,

On Sun, Dec 07, 2003 at 01:50:53PM +0100, Filip Navara wrote:
> Running 'make install' doesn't copy freetype.dll into <reactos>\system32
> directory. Can someone correct it please?
A file lib/freetype/install exists, so make says, "install is up to
date".
Normally, the install target would be phony, but for some reason, in
helper.mak, ".PHONY" is written as ".phony", which make doesn't
recognize.

Changing the .phony target to .PHONY fixes the problem.  Patch attached.


Sebastian
-- 
            http://krake.yath.eu.org/
[0] yath at eniac:~$ nc mx.chi.playboy.com smtp
220 mx.chi.playboy.com -- ALL YOUR EMAIL ARE BELONG TO US
-------------- next part --------------
--- helper.mk.old	2003-12-07 15:33:00.000000000 +0100
+++ helper.mk	2003-12-07 15:33:30.000000000 +0100
@@ -744,7 +744,7 @@
 $(MK_NOSTRIPNAME):
 	-
 
-.phony: $(MK_NOSTRIPNAME)
+.PHONY: $(MK_NOSTRIPNAME)
 
 endif # MK_MODE
 
@@ -845,7 +845,7 @@
 endif # MK_IMPLIBONLY
 
 
-.phony: all depends implib clean install dist bootcd depends
+.PHONY: all depends implib clean install dist bootcd depends
 
 ifneq ($(SUBDIRS),)
 $(SUBDIRS:%=%_all): %_all:
@@ -866,7 +866,7 @@
 $(SUBDIRS:%=%_bootcd): %_bootcd:
 	$(MAKE) -C $* SUBDIRS= bootcd
 
-.phony: $(SUBDIRS:%=%_all) $(SUBDIRS:%=%_implib) $(SUBDIRS:%=%_clean) \
+.PHONY: $(SUBDIRS:%=%_all) $(SUBDIRS:%=%_implib) $(SUBDIRS:%=%_clean) \
         $(SUBDIRS:%=%_install) $(SUBDIRS:%=%_dist) $(SUBDIRS:%=%_bootcd)
 endif
 


More information about the Ros-kernel mailing list