Blame SOURCES/js17-build-fixes.patch

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