From: Andre Noll Date: Thu, 27 Dec 2007 14:10:58 +0000 (+0100) Subject: Makefile.in: Change type of variables to simply expanded type. X-Git-Tag: v0.3.0~33 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=55071ec8801a9c886f5fad11649b6390da1a751c Makefile.in: Change type of variables to simply expanded type. --- diff --git a/Makefile.in b/Makefile.in index 827d04f9..9382ce75 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,17 +1,17 @@ -prefix = @prefix@ -exec_prefix = @exec_prefix@ +prefix := @prefix@ +exec_prefix := @exec_prefix@ -BINDIR = @bindir@ -VARDIR = /var/paraslash -PKGDATADIR = @datarootdir@/@PACKAGE_NAME@ -MANDIR = @datarootdir@/man/man1 +BINDIR := @bindir@ +VARDIR := /var/paraslash +PKGDATADIR := @datarootdir@/@PACKAGE_NAME@ +MANDIR := @datarootdir@/man/man1 -install_sh = @install_sh@ +install_sh := @install_sh@ -build_date = $(shell date) -system = $(shell uname -rs) -cc_version = $(shell $(CC) --version | head -n 1) -codename = solar saturation +build_date := $(shell date) +system := $(shell uname -rs) +cc_version := $(shell $(CC) --version | head -n 1) +codename := solar saturation DEBUG_CPPFLAGS += -Wno-sign-compare -g -Wunused -Wundef -W DEBUG_CPPFLAGS += -Wredundant-decls @@ -71,8 +71,8 @@ all: $(BINARIES) man: $(man_pages) tarball: $(tarball) -fade_objs = fade.cmdline.o fade.o exec.o close_on_fork.o string.o fd.o -fsck_objs = osl.o rbtree.o fsck.o string.o sha1.o fsck.cmdline.o +fade_objs := fade.cmdline.o fade.o exec.o close_on_fork.o string.o fd.o +fsck_objs := osl.o rbtree.o fsck.o string.o sha1.o fsck.cmdline.o *.o: para.h config.h gcc-compat.h