Heino Tiedemann <rotkaps_spam_trap(at)gmx.de> wrote:
> Noch eine Frage zum Makefile von print/auctex:
>
> ,----
> | EMACS_PORT_NAME?= emacs21
> `----
>
> Was solln das Fragezeichen da?
Kann man in make(1) nachlesen: »?=« ist das gleiche wie
»=«, ordnet die Variable aber nur dann zu, wenn sie bisher
noch nicht existiert. Es ist also nur eine bequeme Kurz-
form des folgenden Konstrukts:
.ifndef EMACS_PORT_NAME
EMACS_PORT_NAME= emacs21
.endif
Gruß
Olli
-- Oliver Fromme, secnetix GmbH & Co. KG, Marktplatz 29, 85567 Grafing Dienstleistungen mit Schwerpunkt FreeBSD: http://www.secnetix.de/bsd Any opinions expressed in this message may be personal to the author and may not necessarily reflect the opinions of secnetix in any way. "I invented Ctrl-Alt-Delete, but Bill Gates made it famous." -- David Bradley, original IBM PC design team To Unsubscribe: send mail to majordomo(at)de.FreeBSD.org with "unsubscribe de-bsd-questions" in the body of the messageReceived on Wed 12 Jul 2006 - 19:04:33 CEST