--- tools/zpak.orig	Sat Mar 15 23:32:09 2003
+++ tools/zpak	Sat Mar 15 23:58:52 2003
@@ -1,4 +1,4 @@
-#! /bin/bash
+#!/bin/sh
 # create pak files with gzipped internals
 
 if [ $# -eq 0 ]; then
@@ -18,7 +18,7 @@
 
 	# 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' \

