Bug 194357 - sysutils/cbsd: fix Makefile by replacing asterisk in cp
Summary: sysutils/cbsd: fix Makefile by replacing asterisk in cp
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: --- Affects Some People
Assignee: Veniamin Gvozdikov
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-10-14 21:18 UTC by Oleg Ginzburg
Modified: 2014-10-15 11:32 UTC (History)
1 user (show)

See Also:


Attachments
sysutils/cbsd: fix Makefile by replacing asterisk in cp (721 bytes, text/plain)
2014-10-14 21:18 UTC, Oleg Ginzburg
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Oleg Ginzburg 2014-10-14 21:18:15 UTC
Created attachment 148312 [details]
sysutils/cbsd: fix Makefile by replacing asterisk in cp

replace construction:
  cp SRCDIR/* DSTDIR
to
  cp SRCDIR DSTDIR

in Makefile because SRCDIR have the directory starting with dot which we lost.
Comment 1 commit-hook freebsd_committer freebsd_triage 2014-10-15 11:32:05 UTC
A commit references this bug:

Author: vg
Date: Wed Oct 15 11:31:39 UTC 2014
New revision: 370905
URL: https://svnweb.freebsd.org/changeset/ports/370905

Log:
  - Fix Makefile by replacing asterisk in cp

  replace construction:
    cp SRCDIR/* DSTDIR
  to
    cp SRCDIR DSTDIR

  PR:		194357
  Submitted by:	olevole@olevole.ru (maintainer)

Changes:
  head/sysutils/cbsd/Makefile
Comment 2 Veniamin Gvozdikov freebsd_committer freebsd_triage 2014-10-15 11:32:53 UTC
Commited, thank you!