Changeset bb0d80a8


Ignore:
Timestamp:
01/23/2023 11:56:57 AM (15 months ago)
Author:
Xi Ruoyao <xry111@…>
Branches:
11.3, 12.0, 12.1, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, xry111/llvm18, xry111/xf86-video-removal
Children:
6831cce
Parents:
41275f9a
Message:

Makefile: fix build-env generation

Not sure why the previous commit with ovbious errors "seems to work"...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r41275f9a rbb0d80a8  
    300300#       $(Q)mv temp.xml $@
    301301
     302build-env: update-build-env
     303        $(Q)echo REV=$(REV) > build-env.new
     304        $(Q)echo BASEDIR=$(BASEDIR) >> build-env.new
     305        $(Q)diff build-env{.new,} 2>/dev/null >/dev/null || mv build-env{.new,}
     306        $(Q)rm -f build-env.new
     307
    302308.PHONY: update-build-env
    303 update-build-env:
    304         $(Q)echo REV=$(REV) > $@.new
    305         $(Q)echo BASEDIR=$(BASEDIR) >> $@.new
    306         $(Q)diff $@.new $@ 2>/dev/null >/dev/null || mv $@.new $@
    307         $(Q)rm -f $@.new
    308 
    309 build-env: update-build-env
     309update-build-env: ; @true
Note: See TracChangeset for help on using the changeset viewer.