Use cp instead of ln.
authorBen Pfaff <blp@cs.stanford.edu>
Tue, 14 Sep 2004 20:09:58 +0000 (20:09 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Tue, 14 Sep 2004 20:09:58 +0000 (20:09 +0000)
src/Makefile.kernel

index 04214fd953299db397af8f80caf0849b86eb0363..c1985c4537f791da77fe27e11228014baeec2c6e 100644 (file)
@@ -1,6 +1,6 @@
 include Makefile.vars
 BUILD_SUBDIRS = $(addprefix build/, $(SUBDIRS))
-LN_S = ln -s
+CP = cp
 MKDIR = mkdir
 
 all: build build/Makefile $(BUILD_SUBDIRS)
@@ -11,7 +11,7 @@ $(BUILD_SUBDIRS):
 build:
        $(MKDIR) $@
 build/Makefile: ../Makefile.build
-       $(LN_S) -Xf ../../Makefile.build $@
+       $(CP) $< $@
 
 clean:
        rm -rf build