diff options
author | sf <sf@FreeBSD.org> | 2001-09-22 14:06:15 +0800 |
---|---|---|
committer | sf <sf@FreeBSD.org> | 2001-09-22 14:06:15 +0800 |
commit | 8418ab01eb0e1c832aa115515ff4a5ab47d159b6 (patch) | |
tree | 89775f9e19c721bcd524cea8fd25ff3fbf47dece /lang/klone/files | |
parent | 15967351357028084ebdbb82ddd25b80d0faf015 (diff) | |
download | freebsd-ports-gnome-8418ab01eb0e1c832aa115515ff4a5ab47d159b6.tar.gz freebsd-ports-gnome-8418ab01eb0e1c832aa115515ff4a5ab47d159b6.tar.zst freebsd-ports-gnome-8418ab01eb0e1c832aa115515ff4a5ab47d159b6.zip |
o fix MASTER_SITES.
o respect CC and CFLAGS.
PR: 30720
Submitted by: KATO Tsuguru <tkato@prontomail.com>
Diffstat (limited to 'lang/klone/files')
-rw-r--r-- | lang/klone/files/freebsd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/klone/files/freebsd b/lang/klone/files/freebsd index aaddf9333139..da22b437d2f0 100644 --- a/lang/klone/files/freebsd +++ b/lang/klone/files/freebsd @@ -3,13 +3,13 @@ # defines this to the binary type: sun4, sun4solaris... MACHINE_TYPE = freebsd # default path for looking for klone files -KLONEPATH ="\".:~/kl:!!PREFIX!!/lib/klone\"" +KLONEPATH ="\".:~/kl:%%PREFIX%%/lib/klone\"" # system-needed libraries LIBS = # compilation flags , -O or -g -FLAGS = -O +FLAGS = %%CFLAGS%% # name (absolute or relative) of the compiler: cc, /bin/cc -C_COMPILER = cc +C_COMPILER = %%CC%% # various defines: DEFINES = -DSYSV_TIME -DVOID_SIGNALS # other linker -specific flags |