aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 5d78b501..01ecf9ba 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -100,7 +100,9 @@ all: .depend $(TARGET)
version.h:
sed -n -e 's/^VERSION =[[:space:]]*\([^[:space:]]*\).*/#define VERSION "\1\"/p' ../Makefile > version.h
- test -n "${BRANDING}" && echo "#define BRANDING \"${BRANDING}\"" >> version.h
+ if test -n "${BRANDING}"; then \
+ echo "#define BRANDING \"${BRANDING}\"" >> version.h; \
+ fi
$(LIBEINFOOBJS):
$(CC) $(CPPFLAGS) $(CPPFLAGS_LIBEINFO) $(CFLAGS) -fPIC -c $<