Browse Source

Replace bash compatible syntax.

Alessio Treglia 12 years ago
parent
commit
7ec6559ef3
3 changed files with 3 additions and 3 deletions
  1. 1
    1
      FFdecsa_init
  2. 1
    1
      Makefile
  3. 1
    1
      libfuncs

+ 1
- 1
FFdecsa_init View File

@@ -42,7 +42,7 @@ TMPDIR=`mktemp -d FFdecsa.build.XXXXXXXX` || exit 1
42 42
 
43 43
 trap "{ rm -rf $TMPDIR ; exit 1; }" INT TERM
44 44
 
45
-cp $FFDECSA_DIR/Makefile $FFDECSA_DIR/*.{c,h} $TMPDIR
45
+cp $FFDECSA_DIR/Makefile $FFDECSA_DIR/*.c $FFDECSA_DIR/*.h $TMPDIR
46 46
 
47 47
 log()  { printf "%s %-26s : %s\n" "$LPREFIX" "$1" "$2"; }
48 48
 logn() { printf "%s %-26s : %s"   "$LPREFIX" "$1" "$2"; }

+ 1
- 1
Makefile View File

@@ -67,7 +67,7 @@ DEFS += -DUSE_LIBDVBCSA=1
67 67
 tsdecrypt_LIBS += -ldvbcsa
68 68
 endif
69 69
 
70
-CLEAN_OBJS = $(FFDECSA_OBJ) tsdecrypt $(tsdecrypt_SRC:.c=.{o,d})
70
+CLEAN_OBJS = $(FFDECSA_OBJ) tsdecrypt $(tsdecrypt_SRC:.c=.o) $(tsdecrypt_SRC:.c=.d)
71 71
 
72 72
 PROGS = tsdecrypt
73 73
 

+ 1
- 1
libfuncs

@@ -1 +1 @@
1
-Subproject commit 4bf0590502a2e96ac1275cbb79a08b282ddb81a9
1
+Subproject commit 2d8b0cb1051ce0196ee387ab6ae731c2f841c67b

Loading…
Cancel
Save