summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2013-07-04 10:17:48 -0700
committerAttila Molnar <attilamolnar@hush.com>2013-07-04 10:17:48 -0700
commit27ae66eb3fb7056570936e7f4655ec3128bac2a7 (patch)
tree87621d8cecc160fa7b2089f7b32a6c6b61cea324 /configure
parentfd0fa86da89ab4cefa778307088ef2552a05a170 (diff)
parent240f34086a805dc4c3151aae00101f9bec6870df (diff)
Merge pull request #577 from SaberUK/master+makefile-cleanup
Tidy up the Makefile template.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure b/configure
index e54318112..c3d8c4110 100755
--- a/configure
+++ b/configure
@@ -960,6 +960,7 @@ EOF
s/\@IFDEF (\S+)/ifdef $1/g;
s/\@IFNDEF (\S+)/ifndef $1/g;
s/\@IFEQ (\S+) (\S+)/ifeq ($1,$2)/g;
+ s/\@IFNEQ (\S+) (\S+)/ifneq ($1,$2)/g;
s/\@ELSIFEQ (\S+) (\S+)/else ifeq ($1,$2)/g;
s/\@ELSE/else/g;
s/\@ENDIF/endif/g;
@@ -975,6 +976,7 @@ EOF
s/\@IFDEF (\S+)/.if defined($1)/g;
s/\@IFNDEF (\S+)/.if !defined($1)/g;
s/\@IFEQ (\S+) (\S+)/.if $1 == $2/g;
+ s/\@IFNEQ (\S+) (\S+)/.if $1 != $2/g;
s/\@ELSIFEQ (\S+) (\S+)/.elif $1 == $2/g;
s/\@ELSE/.else/g;
s/\@ENDIF/.endif/g;