blob: 1e45853113bee132d7eb0a441aad5a36919a45f0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- opengfx-0.5.3-source/Makefile
+++ opengfx-0.5.3-source/Makefile
@@ -99,8 +99,8 @@
AWK ?= awk
GREP ?= grep
PYTHON ?= python
-UNIX2DOS ?= $(shell which unix2dos)
-UNIX2DOS_FLAGS ?= $(shell [ -n $(UNIX2DOS) ] && $(UNIX2DOS) -q --version 2>/dev/null && echo "-q" || echo "")
+UNIX2DOS ?= $(shell which unix2dos 2>/dev/null)
+UNIX2DOS_FLAGS ?= $(shell [ -n $(UNIX2DOS) ] && $(UNIX2DOS) -q --version 2>/dev/null >&2 && echo "-q" || echo "")
# Graphics processing
GIMP ?= gimp
@@ -719,7 +719,7 @@
$(_E)
endif
$(_E) "Release:"
- $(_E) "bananas: Upload bundle to BaNaNaS
+ $(_E) "bananas: Upload bundle to BaNaNaS"
$(_E)
$(_E) "Valid command line variables are:"
$(_E) "Helper programmes:"
|