Skip to content

Commit 0c5413f

Browse files
committed
Modify Makefile
Change from "-r" to "-R" for the "cp" command.
1 parent 955f6a4 commit 0c5413f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ bam: example.bam.tar.gz
3434
ngsplot-$(CURVER).tar.gz: $(BINCUFF) $(BINNGSP) $(LIB) $(OTHERS)
3535
rm -rf ${DISTFOLDER}
3636
mkdir -p ${DISTFOLDER}/bin ${DISTFOLDER}/lib
37-
cp -rL $(BINCUFF) $(BINNGSP) ${DISTFOLDER}/bin
38-
cp -rL $(LIB) ${DISTFOLDER}/lib
39-
cp -rL $(OTHERS) ${DISTFOLDER}
37+
cp -RL $(BINCUFF) $(BINNGSP) ${DISTFOLDER}/bin
38+
cp -RL $(LIB) ${DISTFOLDER}/lib
39+
cp -RL $(OTHERS) ${DISTFOLDER}
4040
find ${DISTFOLDER}/ -name '.svn'|xargs -I% rm -r %
4141
find ${DISTFOLDER}/ -name '.git'|xargs -I% rm -r %
4242
# Remove comments and blank lines from *.r files.

0 commit comments

Comments
 (0)