summaryrefslogtreecommitdiff
path: root/data/shell-cmds/make.sh
diff options
context:
space:
mode:
Diffstat (limited to 'data/shell-cmds/make.sh')
-rw-r--r--data/shell-cmds/make.sh2
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