Blame SOURCES/js17-build-fixes.patch

c67d24
From 0e27b45a3409e0a5c23e63af9e86048e1e7661da Mon Sep 17 00:00:00 2001
c67d24
From: Colin Walters <walters@verbum.org>
c67d24
Date: Wed, 18 Jan 2012 22:25:47 -0500
c67d24
Subject: [PATCH] build: Add toplevel trampoline configure/Makefile
c67d24
c67d24
These just invoke the ones in js/src.
c67d24
---
c67d24
 Makefile  |    5 +++++
c67d24
 configure |    5 +++++
c67d24
 2 files changed, 10 insertions(+), 0 deletions(-)
c67d24
 create mode 100644 Makefile
c67d24
 create mode 100755 configure
c67d24
c67d24
diff --git a/Makefile b/Makefile
c67d24
new file mode 100644
c67d24
index 0000000..98de844
c67d24
--- /dev/null
c67d24
+++ b/Makefile
c67d24
@@ -0,0 +1,5 @@
c67d24
+all:
c67d24
+	cd js/src && $(MAKE)
c67d24
+
c67d24
+install:
c67d24
+	cd js/src && $(MAKE) install DESTDIR=$(DESTDIR)
c67d24
diff --git a/configure b/configure
c67d24
new file mode 100755
c67d24
index 0000000..93ef339
c67d24
--- /dev/null
c67d24
+++ b/configure
c67d24
@@ -0,0 +1,5 @@
c67d24
+#!/bin/sh
c67d24
+# http://people.gnome.org/~walters/docs/build-api.txt
c67d24
+echo \#buildapi-variable-no-builddir >/dev/null
c67d24
+cd js/src
c67d24
+exec ./configure "$@"
c67d24
-- 
c67d24
1.7.1
c67d24