diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-02-25 15:03:52 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-02-25 15:03:52 +0100 |
commit | a653aed4c0f0c83185fca8076559ae10553ec11f (patch) | |
tree | dc732ad657d21942d1d964763ab301a2672299f3 /nxcompshad/src | |
parent | dd1ae1769858b7467bd4cde2b83b1cda8653c983 (diff) | |
parent | 06c14b83184f30498e27fed435d38d6e33338f2c (diff) | |
download | nx-libs-a653aed4c0f0c83185fca8076559ae10553ec11f.tar.gz nx-libs-a653aed4c0f0c83185fca8076559ae10553ec11f.tar.bz2 nx-libs-a653aed4c0f0c83185fca8076559ae10553ec11f.zip |
Merge branch 'Ionic-bugfix/FTBFS-non-ELF' into 3.6.x
Attributes GH PR #663: https://github.com/ArcticaProject/nx-libs/pull/663
Diffstat (limited to 'nxcompshad/src')
-rw-r--r-- | nxcompshad/src/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/nxcompshad/src/Makefile.am b/nxcompshad/src/Makefile.am index f7beac86e..4580149ad 100644 --- a/nxcompshad/src/Makefile.am +++ b/nxcompshad/src/Makefile.am @@ -39,10 +39,14 @@ AM_CPPFLAGS = \ libXcompshad_la_LDFLAGS = \ -version-number @LT_COMPSHAD_VERSION@ -no-undefined \ - -Wl,--enable-new-dtags \ -R '$(libdir)/nx/X11' \ $(NULL) +if TARGET_ELF +libXcompshad_la_LDFLAGS += \ + -Wl,--enable-new-dtags \ +endif TARGET_ELF + libXcompshadincludedir = $(includedir)/nx libXcompshadinclude_HEADERS = \ $(top_srcdir)/include/Shadow.h \ |