diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | Makefile | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -7472,3 +7472,4 @@ Video Disk Recorder Revision History from the file Make.config.template. If set, DVBDIR is now conveyed to plugins via the CFLAGS. - Removed some redundancy from Make.config.template. +- Changed "==" to "=" in the Makefile to make it POSIX style. @@ -4,7 +4,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: Makefile 2.38 2012/12/27 11:28:21 kls Exp $ +# $Id: Makefile 2.39 2012/12/27 12:08:01 kls Exp $ .DELETE_ON_ERROR: @@ -196,7 +196,7 @@ plugins: include-dir vdr.pc continue;\ fi;\ target=all;\ - if [ "$(LIBDIR)" == "$(CWD)/PLUGINS/lib" ] && [ "$(LOCDIR)" == "$(CWD)/locale" ]; then\ + if [ "$(LIBDIR)" = "$(CWD)/PLUGINS/lib" ] && [ "$(LOCDIR)" = "$(CWD)/locale" ]; then\ target=install;\ fi;\ includes=;\ |