mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-22 20:41:20 +00:00
portability fixes from freebsd (MrFixit? q@uni.de)
This commit is contained in:
parent
58541b6855
commit
87e73b6e26
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
#! /bin/bash
|
||||
#! /bin/sh
|
||||
# create pak files with gzipped internals
|
||||
|
||||
if [ $# -eq 0 ]; then
|
||||
|
@ -18,7 +18,7 @@ for pakfile in $*; do
|
|||
|
||||
# cosmetic (gzip preserves timestamps.. could come in handy)
|
||||
find * -type f \
|
||||
-exec touch {} -r ${pakfile} \;
|
||||
-exec touch -r ${pakfile} {} \;
|
||||
|
||||
find * -type f \
|
||||
! -name '*.gz' ! -name '*.jpg' ! -name '*.ogg' ! -name '*.png' \
|
||||
|
|
Loading…
Reference in a new issue