2fd8d4df94
```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.-][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.-][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
17 lines
536 B
Diff
17 lines
536 B
Diff
Index: CMakeLists.txt
|
|
===================================================================
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -25,12 +25,10 @@ SET(GAME_NAME "Open Sonic")
|
|
SET(GAME_VERSION "0.1.4")
|
|
SET(RTFM "Please read the user manual (readme.html) to get help.")
|
|
SET(ALLEGRO_RECOMMENDED_VERSION "4.4.1")
|
|
-SET(CMAKE_BUILD_TYPE Release)
|
|
MESSAGE("${GAME_NAME} version ${GAME_VERSION}")
|
|
|
|
# configuring...
|
|
SET(DEFS "")
|
|
-SET(CFLAGS_EXTRA "-g")
|
|
SET(CFLAGS "${CFLAGS} ${CMAKE_C_FLAGS}")
|
|
MESSAGE("Using CFLAGS='${CFLAGS}'")
|
|
|