Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatryk Obara <dreamer.tan@gmail.com>2021-02-17 17:26:55 +0300
committerPatryk Obara <patryk.obara@gmail.com>2021-02-19 21:36:58 +0300
commite6ecdd0be1b1d47d1fceb3bfb7201e9ed2c2f64c (patch)
tree4b7842cf358a82f7c693ff0f98f5ce3f681768c7 /scripts
parent0841d3ba16bc462a9c8f093fdff8eac5167ffbee (diff)
Remove unused unifdef-all script
It's not useful since we cleaned up OS/2, SDL 1.2, and other spurious ifdefs.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/unifdef-all.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/scripts/unifdef-all.sh b/scripts/unifdef-all.sh
deleted file mode 100755
index ab77b25b3..000000000
--- a/scripts/unifdef-all.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-# This script uses unifdef to mass-remove code inside ifdefs, that are not
-# relevant to Linux.
-#
-# Use it only to improve readability when researching code.
-
-cd "$(git rev-parse --show-toplevel)" || exit
-
-git ls-files ./*.{h,cpp} | xargs unifdef \
- -U WIN32 \
- -U _WIN32 \
- -U _WIN64 \
- -U MACOSX \
- -m