aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure b/configure
index bb86324714..7bfeed48ef 100755
--- a/configure
+++ b/configure
@@ -204,7 +204,11 @@ EOF
}
gcc_get_define() {
- $CXX -dM -E - < /dev/null | fgrep "$1" | head -n1 | cut -d ' ' -f 3-
+ # Note: The AmigaOS compiler doesn't like the "-" input file, so a real file
+ # is used instead
+ touch $TMPC
+ $CXX -dM -E $TMPC | fgrep "$1" | head -n1 | cut -d ' ' -f 3-
+ rm -f $TMPC
}
#