Skip to content

Commit 3d89b9f

Browse files
author
Daniel Farina
committed
Fix numerous thinkos confusing 'build' vs 'binary'
What's annoying is this worked on Launchpad i386 but not Launchpad amd64...however, it'd pdebuild just fine. Eventually diffing the two outputs and comparing them carefully, we see the following in the broken build: /usr/bin/fakeroot debian/rules binary-arch And this in the working build: /usr/bin/fakeroot debian/rules binary I then realized that binary-arch was doing what it was supposed to do and looked more closely, and realized I had stuffed everything up but had not noticed. Signed-off-by: Daniel Farina <daniel@heroku.com>
1 parent 34fa8da commit 3d89b9f

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
plv8 (1.3.0-1heroku5) precise; urgency=low
2+
3+
* Fix build vs binary thinkos
4+
5+
-- Daniel Farina <daniel@heroku.com> Wed, 06 Mar 2013 03:04:57 -0800
6+
17
plv8 (1.3.0-1heroku4) precise; urgency=low
28

39
* Convert PATH form

debian/rules

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ DH_VERBOSE=1
66
%:
77
dh $@
88

9-
build: binary-arch binary-indep
9+
build: build-arch build-indep
1010

11-
binary-arch:
11+
build-arch:
1212
base64 -d debian/build.tar.b64 | tar x
13-
$(MAKE) static PATH=/usr/lib/postgresql/9.2/bin:$(PATH)
13+
$(MAKE) static PATH=/usr/lib/postgresql/9.2/bin:$(PATH)
1414

1515
# No-op testing, because this requires installcheck; improving this
1616
# would involve setting up a cluster first.

0 commit comments

Comments
 (0)