Skip to content

Commit

Permalink
starfighter: Use parens to access Makefile var
Browse files Browse the repository at this point in the history
This matches how other variables are referenced in the Makefile.
  • Loading branch information
ryandesign committed Jun 1, 2018
1 parent 536ead3 commit 62a9a58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion games/starfighter/files/patch-makefile.diff
Expand Up @@ -2,7 +2,7 @@
+++ makefile.new Wed Feb 11 00:24:18 2004
@@ -1,4 +1,4 @@
-CFLAGS = `sdl-config --cflags` -Wall -DLINUX
+CFLAGS = `sdl-config --cflags` -I${PREFIX}/include -Wall -DLINUX
+CFLAGS = `sdl-config --cflags` -I$(PREFIX)/include -Wall -DLINUX
LIBS = `sdl-config --libs` -lSDL_mixer -lSDL_image
OBJS = ai.o aliens.o audio.o bullets.o cargo.o collectable.o comms.o debris.o events.o explosions.o game.o globals.o graphics.o init.o intermission.o loadSave.o messages.o misc.o missions.o player.o resources.o script.o shop.o Starfighter.o title.o unpack.o weapons.o

Expand Down

0 comments on commit 62a9a58

Please sign in to comment.