Skip to content

Commit

Permalink
Fixed problem in Makefile - 'cp -c' not supported on all versions of …
Browse files Browse the repository at this point in the history
…BASH
  • Loading branch information
AndrewCRMartin committed Feb 15, 2016
1 parent 656ff7d commit ebb9add
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Makefile
Expand Up @@ -147,7 +147,7 @@ install :

installdata :
mkdir -p $(DATADEST)
(cd ../data; cp -Rcp * $(DATADEST))
(cd ../data; cp -Rp * $(DATADEST))

installshared :
mkdir -p $(SHAREDLIBDEST)
Expand Down

0 comments on commit ebb9add

Please sign in to comment.