aboutsummaryrefslogtreecommitdiff
path: root/debian/patches/001_add-main-makefile.full+lite.patch
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2012-02-14 08:39:32 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2012-02-14 08:39:32 +0100
commitb4b4e209bf1d379adcff26e28305af076f8963d4 (patch)
treef278b41cc0310cb06c1b9321d6774db37144b8ee /debian/patches/001_add-main-makefile.full+lite.patch
parent280d8751c36b6585c068a25cc180e7baa6df2019 (diff)
downloadnx-libs-b4b4e209bf1d379adcff26e28305af076f8963d4.tar.gz
nx-libs-b4b4e209bf1d379adcff26e28305af076f8963d4.tar.bz2
nx-libs-b4b4e209bf1d379adcff26e28305af076f8963d4.zip
Update patch: 001_add-main-makefile.full+lite.patch, use curly braces for macros.
Diffstat (limited to 'debian/patches/001_add-main-makefile.full+lite.patch')
-rw-r--r--debian/patches/001_add-main-makefile.full+lite.patch22
1 files changed, 11 insertions, 11 deletions
diff --git a/debian/patches/001_add-main-makefile.full+lite.patch b/debian/patches/001_add-main-makefile.full+lite.patch
index 7f79277d7..9f4351f91 100644
--- a/debian/patches/001_add-main-makefile.full+lite.patch
+++ b/debian/patches/001_add-main-makefile.full+lite.patch
@@ -9,12 +9,12 @@ Last-Update: 2011-12-31
+#!/usr/bin/make -f
+
+%:
-+ $(MAKE) -C nxcomp $@
-+ $(MAKE) -C nxproxy $@
++ ${MAKE} -C nxcomp $@
++ ${MAKE} -C nxproxy $@
+ if test -d nx-X11; then \
-+ $(MAKE) -C nxcompext $@; \
-+ $(MAKE) -C nxcompshad; \
-+ $(MAKE) -C nx-X11 $@; \
++ ${MAKE} -C nxcompext $@; \
++ ${MAKE} -C nxcompshad; \
++ ${MAKE} -C nx-X11 $@; \
+ fi
+
+all: build
@@ -23,20 +23,20 @@ Last-Update: 2011-12-31
+ echo "No testing for NX (redistributed)"
+
+build-lite:
-+ cd nxcomp && autoconf && ./configure && $(MAKE)
-+ cd nxproxy && autoconf && ./configure && $(MAKE)
++ cd nxcomp && autoconf && ./configure && ${MAKE}
++ cd nxproxy && autoconf && ./configure && ${MAKE}
+
+build-full:
+# in the full case, we rely on "magic" in the nx-X11 imake-based makefiles...
+ cd nxcomp && autoconf && ./configure
+ cd nxcompext && autoconf
+ cd nxcompshad && autoconf
-+ cd nx-X11 && $(MAKE) World
-+ cd nxproxy && autoconf && (${CONFIGURE}) && $(MAKE)
++ cd nx-X11 && ${MAKE} World
++ cd nxproxy && autoconf && (${CONFIGURE}) && ${MAKE}
+
+build:
+ if ! test -d nx-X11; then \
-+ $(MAKE) build-lite; \
++ ${MAKE} build-lite; \
+ else \
-+ $(MAKE) build-full; \
++ ${MAKE} build-full; \
+ fi