Check-in [d4ba91a7e9]
Overview
Comment:Removed extraneous set -x
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | packages
Files: files | file ages | folders
SHA1: d4ba91a7e968aaede0b9414576ff9c15e7517ee1
User & Date: rkeene on 2014-09-18 04:44:58
Other Links: branch diff | manifest | tags
Context
2014-09-18
05:31
Added start of setting dynamic linker check-in: f2ef882677 user: rkeene tags: packages
04:44
Removed extraneous set -x check-in: d4ba91a7e9 user: rkeene tags: packages
04:43
Added package building branch check-in: 07e806db4e user: rkeene tags: packages
Changes

Modified packages/pkgs/glibc from [50a79e3634] to [1517e291c9].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /usr/bin/env bash

version=2.20
url="http://ftp.gnu.org/gnu/glibc/glibc-${version}.tar.xz"
domain=core.appfs.rkeene.org
sha256=''

function configure() {
        set -x
	mkdir BUILD
	cd BUILD

	../configure --prefix="${prefix}" --sysconfdir=/etc --localstatedir=/var || return 1

	echo '# Ignore: DESTDIR' >> Makefile
}








<







1
2
3
4
5
6
7
8

9
10
11
12
13
14
15
#! /usr/bin/env bash

version=2.20
url="http://ftp.gnu.org/gnu/glibc/glibc-${version}.tar.xz"
domain=core.appfs.rkeene.org
sha256=''

function configure() {

	mkdir BUILD
	cd BUILD

	../configure --prefix="${prefix}" --sysconfdir=/etc --localstatedir=/var || return 1

	echo '# Ignore: DESTDIR' >> Makefile
}