summaryrefslogtreecommitdiff
path: root/wl_defines.sh
diff options
context:
space:
mode:
Diffstat (limited to 'wl_defines.sh')
-rw-r--r--wl_defines.sh20
1 files changed, 10 insertions, 10 deletions
diff --git a/wl_defines.sh b/wl_defines.sh
index 2d7145c..dc709fd 100644
--- a/wl_defines.sh
+++ b/wl_defines.sh
@@ -1,17 +1,17 @@
-INCLUDE_XWAYLAND=1
-WLROOT=$HOME/Wayland
-WLD=$WLROOT/install # change this to another location if you prefer
+export INCLUDE_XWAYLAND=1
+export WLROOT=$HOME/Wayland
+export WLD=$WLROOT/install # change this to another location if you prefer
if [ "$(uname -i)" = "i386" ]; then
- WL_BITS=32
+ export WL_BITS=32
else
- WL_BITS=64
+ export WL_BITS=64
fi
-LD_LIBRARY_PATH=$WLD/lib
-PKG_CONFIG_PATH=$WLD/lib/pkgconfig/:$WLD/share/pkgconfig/
-ACLOCAL_PATH="$WLD/share/aclocal"
-ACLOCAL="aclocal -I $ACLOCAL_PATH"
+export LD_LIBRARY_PATH=$WLD/lib
+export PKG_CONFIG_PATH=$WLD/lib/pkgconfig/:$WLD/share/pkgconfig/
+export PATH=$WLD/bin:$PATH
+export ACLOCAL_PATH="$WLD/share/aclocal"
+export ACLOCAL="aclocal -I $ACLOCAL_PATH"
-export WLROOT WLD LD_LIBRARY_PATH PKG_CONFIG_PATH ACLOCAL ACLOCAL_PATH