Lines Matching full:prefix
7 The build/real prefix handling using sed breaks if build != real and the
8 standard include / lib directories are used ($prefix/include and $prefix/lib).
12 prefix_build="/usr", libdir="$prefix/lib", includedir="$prefix/include".
15 prefix_real = prefix = "/foo/usr" as expected, but
17 the double sed invocation (prefix is already expanded). Work around it by
35 +prefix_build="@prefix@"
39 # locations. Keep prefix & exec_prefix using their original values in case
42 -prefix="@prefix@"
44 +prefix=$(echo "$prefix_build" | sed "s#^$prefix_build#$prefix_real#")
47 -includedir=$(echo "@includedir@" | sed "s#$prefix#$prefix_real#")
48 -libdir=$(echo "@libdir@" | sed "s#$prefix#$prefix_real#")
49 -CFLAGS=$(echo "@CFLAGS@" | sed "s#$prefix#$prefix_real#")
60 -LIBPL=$(echo "@LIBPL@" | sed "s#$prefix#$prefix_real#")