Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 347059 | Differences between
and this patch

Collapse All | Expand All

(-)realpath-1.15-orig/common.mk (-7 / +8 lines)
Lines 8-23 Link Here
8
8
9
override PACKAGE  := realpath
9
override PACKAGE  := realpath
10
10
11
PATH            := /usr/bin:/usr/sbin:/bin:/sbin:$(PATH)
11
#PATH            := /usr/bin:/usr/sbin:/bin:/sbin:$(PATH)
12
SHELL           := @GENTOO_PORTAGE_EPREFIX@/bin/bash
12
13
13
# build abstraction
14
# build abstraction
14
install_file    := install -p -o root -g root -m 644
15
install_file    := install -p -m 644
15
install_script  := install -p -o root -g root -m 755
16
install_script  := install -p -m 755
16
install_dir     := install -d -o root -g root -m 755
17
install_dir     := install -d -m 755
17
install_link    := ln -sf
18
install_link    := ln -sf
18
compress        := gzip -9f
19
compress        := gzip -9f
19
20
20
prefix          := /usr
21
prefix          := @GENTOO_PORTAGE_EPREFIX@/usr
21
etcdir          := /etc/$(PACKAGE)
22
etcdir          := /etc/$(PACKAGE)
22
bindir          := $(prefix)/bin
23
bindir          := $(prefix)/bin
23
sbindir         := $(prefix)/sbin
24
sbindir         := $(prefix)/sbin
Lines 33-43 Link Here
33
webcgidir	      := $(prefix)/lib/cgi-bin
34
webcgidir	      := $(prefix)/lib/cgi-bin
34
applicationsdir := $(prefix)/share/applications
35
applicationsdir := $(prefix)/share/applications
35
36
36
PERL            := /usr/bin/perl
37
PERL            := @GENTOO_PORTAGE_EPREFIX@/usr/bin/perl
37
CC              ?= gcc
38
CC              ?= gcc
38
CFLAGS          += -DVERSION='"$(VERSION)"' -DPACKAGE='"$(PACKAGE)"' -DLOCALEDIR='"$(nlsdir)"'
39
CFLAGS          += -DVERSION='"$(VERSION)"' -DPACKAGE='"$(PACKAGE)"' -DLOCALEDIR='"$(nlsdir)"'
39
LDFLAGS         +=
40
LDFLAGS         +=
40
LIBS            := 
41
LIBS            += 
41
42
42
43
43
44

Return to bug 347059