diff options
Diffstat (limited to 'data/shell-cmds/make.sh')
-rw-r--r-- | data/shell-cmds/make.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/shell-cmds/make.sh b/data/shell-cmds/make.sh index f8a59e1c8..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 - ${PKG_TARG}-gcc -O2 -mthumb -o "${bin}/${bin}" "${bin}"/*.c -D'__FBSDID(x)=' -save-temps +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 |