mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-23 11:45:18 -04:00
25 lines
562 B
Plaintext
25 lines
562 B
Plaintext
$NetBSD: patch-ab,v 1.2 2013/06/09 22:36:12 rodent Exp $
|
|
|
|
Fix portability failure.
|
|
|
|
--- unpack_gsm0610_data.sh.orig 2010-07-24 16:28:33.000000000 +0000
|
|
+++ unpack_gsm0610_data.sh
|
|
@@ -53,7 +53,7 @@ else
|
|
cd gsm0610
|
|
fi
|
|
|
|
-if [ $1x == --no-exe-runx ]
|
|
+if [ $1x = --no-exe-runx ]
|
|
then
|
|
# Run the .exe files, which should be here
|
|
./FR_A.EXE
|
|
@@ -77,7 +77,7 @@ rm -rf READ_FRA.TXT
|
|
rm -rf ACTION
|
|
rm -rf unpacked
|
|
|
|
-if [ $1x == --no-exex ]
|
|
+if [ $1x = --no-exex ]
|
|
then
|
|
# We need to prepare the .exe files to be run separately
|
|
rm -rf *.INP
|