The following commit has been merged in the master branch:
commit b7395ea6549dfc4672ada224545b19a16e43b6d5
Author: Benjamin Drung <[email protected]>
Date: Sun Jun 17 22:55:12 2012 +0200
Use := for the Makefile variables.
diff --git a/scripts/Makefile b/scripts/Makefile
index 71f08b0..a09c706 100644
--- a/scripts/Makefile
+++ b/scripts/Makefile
@@ -13,10 +13,10 @@ VERSION := $(shell cat $(VERSION_FILE))
PL_FILES := $(wildcard *.pl)
SH_FILES = $(wildcard *.sh)
LIBS = libvfork.so.0
-CPPFLAGS = $(shell dpkg-buildflags --get CPPFLAGS)
-CFLAGS = $(shell dpkg-buildflags --get CFLAGS)
+CPPFLAGS := $(shell dpkg-buildflags --get CPPFLAGS)
+CFLAGS := $(shell dpkg-buildflags --get CFLAGS)
CFLAGS += -std=c99
-LDFLAGS = $(shell dpkg-buildflags --get LDFLAGS)
+LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS)
CWRAPPERS = debpkg-wrapper
SCRIPTS = $(patsubst %.pl,%,$(PL_FILES)) $(patsubst %.sh,%,$(SH_FILES))
COMPL_FILES := $(wildcard *.bash_completion)
--
Git repository for devscripts
_______________________________________________
devscripts-devel mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/devscripts-devel