Ticket #8571: build_sys.patch
File build_sys.patch, 1.2 KB (added by , 18 years ago) |
---|
-
configure
383 383 done # for parm in ... 384 384 385 385 DEBFLAGS="-g" 386 CONFIGFLAGS=$@ 386 387 387 388 for ac_option in $@; do 388 389 case "$ac_option" in … … 1385 1386 OBJS += $OBJS 1386 1387 DEFINES += $DEFINES 1387 1388 LDFLAGS += $LDFLAGS 1389 1390 CONFIGFLAGS := $CONFIGFLAGS 1388 1391 EOF 1389 1392 1390 1393 # -
Makefile
39 39 ####################################################################### 40 40 41 41 EXECUTABLE := scummvm$(EXEEXT) 42 CONFIGFLAGS ?= 42 43 43 44 include $(srcdir)/Makefile.common 44 45 45 46 # check if configure has been run or has been changed since last run 46 47 config.mk: $(srcdir)/configure 47 @echo "You need to run ./configure before you can run make" 48 @echo "Either you haven't run it before or it has changed." 49 @exit 1 48 @echo "Running $(srcdir)/configure with the last specified parameters" 49 @echo "or if you didn't run it yet with, no parameters, check" 50 @echo "$(srcdir)/configure --help for a list of parameters." 51 @sleep 2s 52 @$(srcdir)/configure $(CONFIGFLAGS) 50 53 51 54 install: all 52 55 $(INSTALL) -d "$(DESTDIR)$(BINDIR)"