- Use ALLEGRO_CONFIG instead of hardcoded path

PR:		ports/64876
Submitted by:	maintainer
This commit is contained in:
Kirill Ponomarev 2004-03-29 08:14:29 +00:00
parent 846f8f87fb
commit 52d8b2822c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=105591

View File

@ -30,10 +30,10 @@
ifdef DEBUGALLEG
- LDLIBS += `allegro-config --libs debug` $(LIBS)
+ LDLIBS += `/usr/local/bin/allegro-config --libs debug` $(LIBS)
+ LDLIBS += `%%ALLEGRO_CONFIG%% --libs debug` $(LIBS)
else
- LDLIBS += `allegro-config --libs` $(LIBS)
+ LDLIBS += `/usr/local/bin/allegro-config --libs` $(LIBS)
+ LDLIBS += `%%ALLEGRO_CONFIG%% --libs` $(LIBS)
endif
ifdef MESABUILD