bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Duplicated "Entering/Leaving directory" when new option -O is used


From: Stefano Lattarini
Subject: Duplicated "Entering/Leaving directory" when new option -O is used
Date: Tue, 30 Apr 2013 11:19:27 +0200

Here is a minimal reproducer:

  $ cd /tmp
  $ mkdir x
  $ cd x
  $ mkdir src
  $ echo 'all:; $(MAKE) -C src $@' > Makefile
  $ echo 'all:; @echo src' > src/Makefile
  $ make # Work es expected
  make -C src all
  make[1]: Entering directory '/tmp/x/src'
  src
  make[1]: Leaving directory '/tmp/x/src'
  $ make -O # Duplicated lines in output
  make -C src all
  make[1]: Entering directory '/tmp/x/src'
  make[1]: Entering directory '/tmp/x/src'
  src
  make[1]: Leaving directory '/tmp/x/src'
  make[1]: Leaving directory '/tmp/x/src'

The above has been obtained with GNU make built from latest
git version (commit 'moved-to-git-46-g19a69ba').

Regards,
  Stefano



reply via email to

[Prev in Thread] Current Thread [Next in Thread]