Skip to content

Commit

Permalink
switch cp -r to cp -a
Browse files Browse the repository at this point in the history
  • Loading branch information
pescobar committed Nov 8, 2015
1 parent 87daaef commit 589f76d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ preinstallopts = 'mkdir -p %(installdir)s/bin && '
installopts = ' binDir=%(installdir)s/bin && '
installopts += 'mkdir -p %(installdir)s/man/man1 && '
installopts += 'make man manDir=%(installdir)s/man/man1/ && '
installopts += 'cp -r tools/ %(installdir)s && '
installopts += 'cp -r README doc/ %(installdir)s'
installopts += 'cp -a tools/ %(installdir)s && '
installopts += 'cp -a README doc/ %(installdir)s'

sanity_check_paths = {
'files': ["bin/%s" % x for x in ["chipcenter", "chipcor", "chipextract", "chippart", "chippeak",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ preinstallopts = 'mkdir -p %(installdir)s/bin && '
installopts = ' binDir=%(installdir)s/bin && '
installopts += 'mkdir -p %(installdir)s/man/man1 && '
installopts += 'make man manDir=%(installdir)s/man/man1/ && '
installopts += 'cp -r tools/ %(installdir)s && '
installopts += 'cp -r README doc/ %(installdir)s'
installopts += 'cp -a tools/ %(installdir)s && '
installopts += 'cp -a README doc/ %(installdir)s'

sanity_check_paths = {
'files': ["bin/%s" % x for x in ["chipcenter", "chipcor", "chipextract", "chippart", "chippeak",
Expand Down

0 comments on commit 589f76d

Please sign in to comment.