Opened 17 years ago
Closed 17 years ago
#1676 closed bug (fixed)
build_haiku_image: attrrmrf function uses linux/GNU specific stat option -c %i
Reported by: | gogo | Owned by: | mmu_man |
---|---|---|---|
Priority: | normal | Milestone: | R1 |
Component: | Build System | Version: | R1/pre-alpha1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Platform: | All |
Description
The file build/scripts/build_haiku_image uses the command 'stat -c %i'
find "$1" -print0 | xargs -0 stat -c %i | awk "{ print \"$outputDir/attributes/\" \$1 }" | xargs rm -rf
which is Linux/GNU specific.
On FreeBSD one gets e.g.:
... Installing MIME database ... stat: illegal option -- c usage: stat [-FlLnqrsx] [-f format] [-t timefmt] [file ...] Unmounting ... ...
Change History (4)
comment:1 by , 17 years ago
Owner: | changed from | to
---|
comment:2 by , 17 years ago
Status: | new → assigned |
---|
comment:4 by , 17 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Ingo replaced that with an fsShell rm command so it's not here anymore.
Note:
See TracTickets
for help on using tickets.
hmm will have to try and replace it with ls -di | sed or something...