diff options
author | Sam Bingner <sam@bingner.com> | 2019-02-04 16:07:08 -1000 |
---|---|---|
committer | Sam Bingner <sam@bingner.com> | 2019-02-04 16:07:08 -1000 |
commit | 5d44159b9ea89cf5b405107fcda50995a95ad20d (patch) | |
tree | 2c62f6835af92bfe169e113e22899cdbbaa401ab /data/shell-cmds | |
parent | d3af1cb437a93456d4c7e158f7e846d52bcf6803 (diff) |
Add getopt for fakeroot
Diffstat (limited to 'data/shell-cmds')
-rw-r--r-- | data/shell-cmds/make.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/shell-cmds/make.sh b/data/shell-cmds/make.sh index 84375686b..76177e4ec 100644 --- a/data/shell-cmds/make.sh +++ b/data/shell-cmds/make.sh @@ -1,6 +1,6 @@ pkg:setup mkdir -p "${PKG_DEST}/usr/bin" -for bin in killall renice script time which; do +for bin in killall renice script time which getopt; do ${PKG_TARG}-gcc -O2 -o "${bin}/${bin}" "${bin}"/*.c -D'__FBSDID(x)=' -save-temps cp -a "${bin}/${bin}" "${PKG_DEST}/usr/bin" done |