search for: othersrc

Displaying 2 results from an estimated 2 matches for "othersrc".

Did you mean: others
2006 Feb 27
1
Copying many sources to different places inside a destination
.... When --relative is repeated, the sending rsync takes source arguments (or --files-from lines) in pairs: the first gives the real location of the source and the second gives the prefix to put on the source filenames in the file list. Then these two calls would be equivalent: rsync -r foo/src bar/othersrc dest/ rsync -r -RR foo/src src bar/othersrc othersrc dest/ as would these: rsync -r -R foo/src bar/./othersrc dest/ rsync -r -RR foo/src foo/src bar/othersrc othersrc dest/ -- Matt McCutchen hashproduct@verizon.net http://hashproduct.metaesthetics.net/
2014 Dec 17
0
[PATCH] build: sort sources to build in a more deterministic way
...39; -print) +NASMSRC := $(sort $(wildcard $(SRC)/*.asm)) +NASMHDR := $(sort $(wildcard $(SRC)/*.inc)) +CSRC := $(shell find $(SRC) -name '*.c' -print | sort) +SSRC := $(shell find $(SRC) -name '*.S' -print | sort) +CHDR := $(shell find $(SRC) -name '*.h' -print | sort) OTHERSRC := keywords ALLSRC = $(NASMSRC) $(NASMHDR) $(CSRC) $(SSRC) $(CHDR) $(OTHERSRC) @@ -56,18 +56,18 @@ CORE_PXE_CSRC = \ $(addprefix $(SRC)/fs/pxe/, dhcp_option.c pxe.c tftp.c urlparse.c bios.c) LPXELINUX_CSRC = $(CORE_PXE_CSRC) \ - $(shell find $(SRC)/lwip -name '*.c' -print) \ + $(...