svn commit: r411670 - head/sysutils/acpica-tools/files

Jung-uk Kim jkim at FreeBSD.org
Tue Mar 22 17:47:47 UTC 2016


Author: jkim
Date: Tue Mar 22 17:47:45 2016
New Revision: 411670
URL: https://svnweb.freebsd.org/changeset/ports/411670

Log:
  Really fix spurious build failures and make it more safer.  Header file is
  generated on the current working directory regardless of -o option.

Modified:
  head/sysutils/acpica-tools/files/patch-generate_unix_iasl_Makefile

Modified: head/sysutils/acpica-tools/files/patch-generate_unix_iasl_Makefile
==============================================================================
--- head/sysutils/acpica-tools/files/patch-generate_unix_iasl_Makefile	Tue Mar 22 16:58:35 2016	(r411669)
+++ head/sysutils/acpica-tools/files/patch-generate_unix_iasl_Makefile	Tue Mar 22 17:47:45 2016	(r411670)
@@ -1,6 +1,6 @@
---- generate/unix/iasl/Makefile.orig	2016-02-12 17:14:36 UTC
+--- generate/unix/iasl/Makefile.orig	2016-03-18 16:25:41 UTC
 +++ generate/unix/iasl/Makefile
-@@ -272,12 +272,11 @@ include ../Makefile.rules
+@@ -274,12 +274,11 @@ include ../Makefile.rules
  # Function to safely execute yacc
  #
  safe_yacc = \
@@ -10,11 +10,11 @@
 -	$(YACC) $(YFLAGS) -p$(1) -o$$_d/$$_f.c -d $(2) &&\
 -	mv $$_d/$$_f.$${_t\#\#*.} $(3);\
 -	test -d $$_d && rm -fr $$_d
-+	_d=$$(mktemp -d $(3).XXXXXX) &&\
-+	_t=$$_d/$(notdir $(basename $(2))) &&\
-+	$(YACC) $(YFLAGS) -p$(1) -o$$_t.c -d $(2) &&\
-+	mv $$_t$(suffix $(3)) $(3) &&\
-+	rm -fr $$_d
++	_d=$$(mktemp -d '$(abspath $(OBJDIR))/$(1).XXXXXX') &&\
++	cd "$$_d" &&\
++	$(YACC) $(YFLAGS) -p$(1) -o$(1).c -d '$(abspath $(2))' &&\
++	mv $(1)$(suffix $(3)) '$(abspath $(3))' &&\
++	rm -fr "$$_d"
  
  #
  # Macro processing for iASL .y files


More information about the svn-ports-all mailing list