diff options
author | B. Watson <urchlay@slackware.uk> | 2024-07-15 02:40:03 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-07-20 08:09:04 +0700 |
commit | f231b64233a214511b58a108791bac3fa58e8318 (patch) | |
tree | 138fe73d59595a11ed41c7d14a3d92cbd25212a0 /games/atari_8bit_utils | |
parent | 44003f4e92fbbba452eeec9b9855a24482064217 (diff) |
games/atari_8bit_utils: Replaced backtick cmdsub.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/atari_8bit_utils')
-rw-r--r-- | games/atari_8bit_utils/atari_8bit_utils.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/atari_8bit_utils/atari_8bit_utils.SlackBuild b/games/atari_8bit_utils/atari_8bit_utils.SlackBuild index 59e678da4361..3f353cbc2de4 100644 --- a/games/atari_8bit_utils/atari_8bit_utils.SlackBuild +++ b/games/atari_8bit_utils/atari_8bit_utils.SlackBuild @@ -82,16 +82,16 @@ cd ../disasm sed -i -e "s:CFLAGS = -g -O0 -W -Wall # -g and -O0 for easier gdb debugging:CFLAGS = $SLKCFLAGS:" Makefile make cd .. -for f in `ls -1 *.c` - do gcc $SLKCFLAGS $f -o `basename $f .c` +for f in $( ls -1 *.c ) + do gcc $SLKCFLAGS $f -o $( basename $f .c ) done # Setup package files mkdir -p $PKG/usr/bin install -D -m0755 atrfs/atrfs $PKG/usr/bin/atrfs install -D -m0755 disasm/disasm $PKG/usr/bin/disasm -for f in `ls -1 *.c` - do install -D -m0755 `basename $f .c` $PKG/usr/bin/`basename $f .c` +for f in $( ls -1 *.c ) + do install -D -m0755 $( basename $f .c ) $PKG/usr/bin/$( basename $f .c ) done find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ |