aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2025-04-29 01:39:24 +0000
committerLaurent Bercot <ska@appnovation.com>2025-04-29 01:39:24 +0000
commit42f604a613f1866dae9bd7e288320552a510c5b7 (patch)
tree7d7824469229e2cada4992a6a340e323f4d817ba
parent6b7041f41d80e88ec52b9ae7c5f84bca71d1cc12 (diff)
downloadapaste-42f604a613f1866dae9bd7e288320552a510c5b7.tar.gz
More build fixes
Signed-off-by: Laurent Bercot <ska@appnovation.com>
-rwxr-xr-xconfigure8
-rwxr-xr-xtools/configure.template4
-rwxr-xr-xtools/gen-configure.el4
3 files changed, 8 insertions, 8 deletions
diff --git a/configure b/configure
index e1d2753..a849dd4 100755
--- a/configure
+++ b/configure
@@ -194,7 +194,7 @@ for arg ; do
--pkgconfigdir=*) pkgconfigdir=${arg#*=} ;;
--with-sysdeps=*) sysdeps=${arg#*=} manualsysdeps=true ;;
--with-include=*) var=${arg#*=} ; stripdir var ; addincpath="$addincpath -I$var" ; depincpath="${depincpath}${depincpath:+ }-I$var" ;;
- --with-lib=*) var=${arg#*=} ; stripdir var ; addlibspath="$addlibspath -L$var" ; deplibpath="${deplibpath}${deplibpath:+ }-I$var" ; vpaths="$vpaths $var" ;;
+ --with-lib=*) var=${arg#*=} ; stripdir var ; addlibspath="$addlibspath -L$var" ; deplibpath="${deplibpath}${deplibpath:+ }-L$var" ; vpaths="$vpaths $var" ;;
--with-dynlib=*) var=${arg#*=} ; stripdir var ; addlibdpath="$addlibdpath -L$var" ; vpathd="$vpathd $var" ;;
--with-pkgconfig=*) pkgconf=${arg#*=} ;;
--with-pkgconfig) pkgconf=${PKG_CONFIG:-pkg-config} ;;
@@ -422,7 +422,7 @@ tryldflag LDFLAGS_AUTO -Wl,--sort-common
CPPFLAGS_AUTO="${CPPFLAGS_AUTO}${addincpath}"
if $evenmorestatic ; then
- LDFLAGS_NOSHARED=-static
+ LDFLAGS_NOSHARED=" -static"
fi
if $shared ; then
@@ -482,7 +482,7 @@ CFLAGS := ${CFLAGS}${CFLAGS_POST:+ }$CFLAGS_POST
LDFLAGS_AUTO := $LDFLAGS_AUTO
LDFLAGS := ${LDFLAGS}${LDFLAGS_POST:+ }$LDFLAGS_POST
LDFLAGS_SHARED := $LDFLAGS_SHARED
-LDFLAGS_NOSHARED := $LDFLAGS_NOSHARED
+LDFLAGS_NOSHARED :=$LDFLAGS_NOSHARED
CROSS_COMPILE := $cross
vpath lib%.a$vpaths
@@ -561,4 +561,4 @@ echo "#define ${package_macro_name}_TMPDIR \"$tmpdir\""
echo
echo "#endif"
exec 1>&3 3>&-
-echo " ... done." \ No newline at end of file
+echo " ... done."
diff --git a/tools/configure.template b/tools/configure.template
index 54e5ea1..51fc2b4 100755
--- a/tools/configure.template
+++ b/tools/configure.template
@@ -405,7 +405,7 @@ tryldflag LDFLAGS_AUTO -Wl,--sort-common
CPPFLAGS_AUTO="${CPPFLAGS_AUTO}${addincpath}"
if $evenmorestatic ; then
- LDFLAGS_NOSHARED=-static
+ LDFLAGS_NOSHARED=" -static"
fi
if $shared ; then
@@ -465,7 +465,7 @@ CFLAGS := ${CFLAGS}${CFLAGS_POST:+ }$CFLAGS_POST
LDFLAGS_AUTO := $LDFLAGS_AUTO
LDFLAGS := ${LDFLAGS}${LDFLAGS_POST:+ }$LDFLAGS_POST
LDFLAGS_SHARED := $LDFLAGS_SHARED
-LDFLAGS_NOSHARED := $LDFLAGS_NOSHARED
+LDFLAGS_NOSHARED :=$LDFLAGS_NOSHARED
CROSS_COMPILE := $cross
vpath lib%.a$vpaths
diff --git a/tools/gen-configure.el b/tools/gen-configure.el
index 577d86f..eba63fb 100755
--- a/tools/gen-configure.el
+++ b/tools/gen-configure.el
@@ -23,9 +23,9 @@ multisubstitute
if
{
- heredoc 0 ${TEMPLATE}
redirfd -w 1 configure.new
- s6-cat
+ if { heredoc 0 ${TEMPLATE} s6-cat }
+ s6-echo
}
if { s6-chmod 0755 configure.new }