tazpkg rev 907

Makefile: use $(CC) not gcc
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 17:25:11 2016 +0200 (2016-05-21)
parents f16a2aef84b1
children e5b93f147f2b
files Makefile
line diff
     1.1 --- a/Makefile	Sat Apr 23 16:47:41 2016 +0200
     1.2 +++ b/Makefile	Sat May 21 17:25:11 2016 +0200
     1.3 @@ -11,6 +11,7 @@
     1.4  localedir   ?= $(datarootdir)/locale
     1.5  iconsdir    ?= $(datarootdir)/icons
     1.6  
     1.7 +CC	?= gcc
     1.8  DESTDIR ?=
     1.9  LINGUAS ?= el es fr pl pt_BR ru sv zh_CN zh_TW
    1.10  MODULES := $(shell ls modules)
    1.11 @@ -63,7 +64,7 @@
    1.12  	done;
    1.13  
    1.14  notify:
    1.15 -	gcc tazpkg-notification.c -o tazpkg-notification $(CFLAGS) \
    1.16 +	$(CC) tazpkg-notification.c -o tazpkg-notification $(CFLAGS) \
    1.17  		$(shell pkg-config --cflags --libs libnotify)
    1.18  
    1.19