mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
release: Remove useless ls
Replace "$((ls *.txz))" with "*.txz"
Approved by: re (implicit, release build fixes)
Reported by: jrtc27
Sponsored by: Amazon
(cherry picked from commit e166fea685da4ac6a6891f10b07f98d0e9fcfce3)
(cherry picked from commit ce988aa3e8)
This commit is contained in:
parent
c5fc8587ab
commit
b658d3ea49
1 changed files with 2 additions and 2 deletions
|
|
@ -245,12 +245,12 @@ dvd: packagesystem
|
|||
-DDB_FROM_SRC )
|
||||
# Copy distfiles
|
||||
mkdir -p ${.TARGET}/usr/freebsd-dist
|
||||
for dist in MANIFEST $$(ls *.txz); \
|
||||
for dist in MANIFEST *.txz; \
|
||||
do cp $${dist} ${.TARGET}/usr/freebsd-dist; \
|
||||
done
|
||||
.if defined(NO_ROOT)
|
||||
echo "./usr/freebsd-dist type=dir uname=root gname=wheel mode=0755" >> ${.TARGET}/METALOG
|
||||
for dist in MANIFEST $$(ls *.txz); \
|
||||
for dist in MANIFEST *.txz; \
|
||||
do echo "./usr/freebsd-dist/$${dist} type=file uname=root gname=wheel mode=0644" >> ${.TARGET}/METALOG; \
|
||||
done
|
||||
.endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue